diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2025-01-30 10:55:16 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-02-13 12:51:34 +0100 |
commit | ee7d3aec54a32ce53c9b5ca86c75c945a877db19 (patch) | |
tree | ad86645722cf675fc19724b99ca00aa2d867ade1 /rust/qemu-api/src/vmstate.rs | |
parent | ebacd14a6f97b6235e078d9a9ac8a342a3be7c96 (diff) | |
download | qemu-ee7d3aec54a32ce53c9b5ca86c75c945a877db19.zip qemu-ee7d3aec54a32ce53c9b5ca86c75c945a877db19.tar.gz qemu-ee7d3aec54a32ce53c9b5ca86c75c945a877db19.tar.bz2 |
rust: vmstate: remove redundant link targets
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/qemu-api/src/vmstate.rs')
-rw-r--r-- | rust/qemu-api/src/vmstate.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/rust/qemu-api/src/vmstate.rs b/rust/qemu-api/src/vmstate.rs index 164effc..c6dfb60 100644 --- a/rust/qemu-api/src/vmstate.rs +++ b/rust/qemu-api/src/vmstate.rs @@ -191,10 +191,9 @@ pub const fn vmstate_varray_flag<T: VMState>(_: PhantomData<T>) -> VMStateFlags /// * scalar types (integer and `bool`) /// * the C struct `QEMUTimer` /// * a transparent wrapper for any of the above (`Cell`, `UnsafeCell`, -/// [`BqlCell`](crate::cell::BqlCell), [`BqlRefCell`](crate::cell::BqlRefCell) +/// [`BqlCell`], [`BqlRefCell`] /// * a raw pointer to any of the above -/// * a `NonNull` pointer, a `Box` or an [`Owned`](crate::qom::Owned) for any of -/// the above +/// * a `NonNull` pointer, a `Box` or an [`Owned`] for any of the above /// * an array of any of the above /// /// In order to support other types, the trait `VMState` must be implemented |