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