pub(crate) struct MemoryChunk {
pub(crate) chunk_id: NonZeroU64,
pub(crate) size: u64,
pub(crate) offset: u64,
pub(crate) allocation_type: AllocationType,
pub(crate) name: Option<String>,
next: Option<NonZeroU64>,
prev: Option<NonZeroU64>,
}Fields§
§chunk_id: NonZeroU64§size: u64§offset: u64§allocation_type: AllocationType§name: Option<String>§next: Option<NonZeroU64>§prev: Option<NonZeroU64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryChunk
impl RefUnwindSafe for MemoryChunk
impl Send for MemoryChunk
impl Sync for MemoryChunk
impl Unpin for MemoryChunk
impl UnsafeUnpin for MemoryChunk
impl UnwindSafe for MemoryChunk
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