pub struct MemoryHeap {
pub size: u64,
pub flags: HeapFlags,
}
Expand description
A description for a memory heap.
Fields§
§size: u64
Total size of the heap.
flags: HeapFlags
Heap flags.
Trait Implementations§
Source§impl Clone for MemoryHeap
impl Clone for MemoryHeap
Source§fn clone(&self) -> MemoryHeap
fn clone(&self) -> MemoryHeap
Returns a copy 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 MemoryHeap
impl Debug for MemoryHeap
Source§impl PartialEq for MemoryHeap
impl PartialEq for MemoryHeap
impl Copy for MemoryHeap
impl Eq for MemoryHeap
impl StructuralPartialEq for MemoryHeap
Auto Trait Implementations§
impl Freeze for MemoryHeap
impl RefUnwindSafe for MemoryHeap
impl Send for MemoryHeap
impl Sync for MemoryHeap
impl Unpin for MemoryHeap
impl UnwindSafe for MemoryHeap
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