#[repr(C)]pub struct FreeBlock {
pub next: *mut FreeBlock,
}
Expand description
Represents a free block in the small block allocator.
Fields§
§next: *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