#[repr(C)]pub struct nodequeue {
pub store: *mut *mut node_t,
pub limit: *mut *mut node_t,
pub head: *mut *mut node_t,
pub tail: *mut *mut node_t,
}
Fields§
§store: *mut *mut node_t
§limit: *mut *mut node_t
§head: *mut *mut node_t
§tail: *mut *mut node_t
Trait Implementations§
Auto Trait Implementations§
impl Freeze for nodequeue
impl RefUnwindSafe for nodequeue
impl !Send for nodequeue
impl !Sync for nodequeue
impl Unpin for nodequeue
impl UnwindSafe for nodequeue
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