pub struct ListLinks<const ID: u64 = 0> { /* private fields */ }
Expand description
The prev/next pointers for an item in a linked list.
§Invariants
The fields are null if and only if this item is not in a list.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const ID: u64 = 0> !Freeze for ListLinks<ID>
impl<const ID: u64 = 0> !RefUnwindSafe for ListLinks<ID>
impl<const ID: u64 = 0> !Unpin for ListLinks<ID>
impl<const ID: u64> UnwindSafe for ListLinks<ID>
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