struct FreeListEntry {
next: u32,
prev: u32,
other_end: u32,
}
Fields§
§next: u32
§prev: u32
§other_end: u32
Trait Implementations§
Source§impl Clone for FreeListEntry
impl Clone for FreeListEntry
Source§fn clone(&self) -> FreeListEntry
fn clone(&self) -> FreeListEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FreeListEntry
impl Debug for FreeListEntry
impl Copy for FreeListEntry
Auto Trait Implementations§
impl Freeze for FreeListEntry
impl RefUnwindSafe for FreeListEntry
impl Send for FreeListEntry
impl Sync for FreeListEntry
impl Unpin for FreeListEntry
impl UnwindSafe for FreeListEntry
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