pub struct ListHead {
pub prev: *mut ListHead,
pub next: *mut ListHead,
}
Expand description
ListHead define
Fields§
§prev: *mut ListHead
§next: *mut ListHead
Implementations§
Trait Implementations§
impl Copy for ListHead
impl Send for ListHead
impl Sync for ListHead
Auto Trait Implementations§
impl Freeze for ListHead
impl RefUnwindSafe for ListHead
impl Unpin for ListHead
impl UnwindSafe for ListHead
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