#[repr(C)]pub struct List {
pub lh_Head: *mut Node,
pub lh_Tail: *mut Node,
pub lh_TailPred: *mut Node,
pub lh_Type: UBYTE,
pub l_pad: UBYTE,
}Fields§
§lh_Head: *mut Node§lh_Tail: *mut Node§lh_TailPred: *mut Node§lh_Type: UBYTE§l_pad: UBYTETrait Implementations§
Auto Trait Implementations§
impl !Send for List
impl !Sync for List
impl Freeze for List
impl RefUnwindSafe for List
impl Unpin for List
impl UnsafeUnpin for List
impl UnwindSafe for List
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