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