#[repr(C)]pub struct CList {
pub data: *mut c_void,
pub size: c_int,
pub len: c_int,
pub locked: bool,
pub next: *mut CList,
}Fields§
§data: *mut c_void§size: c_int§len: c_int§locked: bool§next: *mut CListTrait Implementations§
Auto Trait Implementations§
impl !Send for CList
impl !Sync for CList
impl Freeze for CList
impl RefUnwindSafe for CList
impl Unpin for CList
impl UnsafeUnpin for CList
impl UnwindSafe for CList
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