#[repr(C)]pub struct FreeTreeNode {
pub __base: Block,
pub root: *mut *mut FreeTreeNode,
pub leftNode: *mut FreeTreeNode,
pub rightNode: *mut FreeTreeNode,
pub parentAndBlack: usize,
}
Fields§
§__base: Block
§root: *mut *mut FreeTreeNode
§leftNode: *mut FreeTreeNode
§rightNode: *mut FreeTreeNode
§parentAndBlack: usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FreeTreeNode
impl RefUnwindSafe for FreeTreeNode
impl !Send for FreeTreeNode
impl !Sync for FreeTreeNode
impl Unpin for FreeTreeNode
impl UnwindSafe for FreeTreeNode
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