#[repr(C)]pub struct LIST {
pub prev: *mut LIST,
pub next: *mut LIST,
pub data: *mut c_void,
}
Fields§
§prev: *mut LIST
§next: *mut LIST
§data: *mut c_void
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LIST
impl RefUnwindSafe for LIST
impl !Send for LIST
impl !Sync for LIST
impl Unpin 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