#[repr(C, packed(2))]pub struct MinList {
pub mlh_Head: *mut MinNode,
pub mlh_Tail: *mut MinNode,
pub mlh_TailPred: *mut MinNode,
}Fields§
§mlh_Head: *mut MinNode§mlh_Tail: *mut MinNode§mlh_TailPred: *mut MinNodeTrait Implementations§
Auto Trait Implementations§
impl Freeze for MinList
impl RefUnwindSafe for MinList
impl !Send for MinList
impl !Sync for MinList
impl Unpin for MinList
impl UnwindSafe for MinList
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