#[repr(C)]pub struct ArenaChunkInfo {
pub next: *mut ArenaChunk,
pub prev: *mut ArenaChunk,
pub numArenasFree: u32,
pub numArenasFreeCommitted: u32,
pub isCurrentChunk: bool,
}
Fields§
§next: *mut ArenaChunk
§prev: *mut ArenaChunk
§numArenasFree: u32
§numArenasFreeCommitted: u32
§isCurrentChunk: bool
Trait Implementations§
Source§impl Clone for ArenaChunkInfo
impl Clone for ArenaChunkInfo
Source§fn clone(&self) -> ArenaChunkInfo
fn clone(&self) -> ArenaChunkInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArenaChunkInfo
impl Debug for ArenaChunkInfo
Source§impl PartialEq for ArenaChunkInfo
impl PartialEq for ArenaChunkInfo
impl Copy for ArenaChunkInfo
impl StructuralPartialEq for ArenaChunkInfo
Auto Trait Implementations§
impl Freeze for ArenaChunkInfo
impl RefUnwindSafe for ArenaChunkInfo
impl !Send for ArenaChunkInfo
impl !Sync for ArenaChunkInfo
impl Unpin for ArenaChunkInfo
impl UnwindSafe for ArenaChunkInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more