pub struct StoredLink {
pub next: Option<Paddr>,
pub prev: Option<Paddr>,
pub slot: MetaSlotSmall,
}Expand description
Representation of a link as stored in the metadata slot.
Fields§
§next: Option<Paddr>§prev: Option<Paddr>§slot: MetaSlotSmallAuto Trait Implementations§
impl Freeze for StoredLink
impl RefUnwindSafe for StoredLink
impl Send for StoredLink
impl Sync for StoredLink
impl Unpin for StoredLink
impl UnsafeUnpin for StoredLink
impl UnwindSafe for StoredLink
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more