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