pub struct MemoryTypeUtilization {
pub utilization: MemoryUtilization,
pub properties: Properties,
pub heap_index: usize,
}
Expand description
Memory utilization of one type.
Fields§
§utilization: MemoryUtilization
Utilization.
properties: Properties
Memory type info.
heap_index: usize
Index of heap this memory type uses.
Trait Implementations§
Source§impl Clone for MemoryTypeUtilization
impl Clone for MemoryTypeUtilization
Source§fn clone(&self) -> MemoryTypeUtilization
fn clone(&self) -> MemoryTypeUtilization
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 MemoryTypeUtilization
impl Debug for MemoryTypeUtilization
impl Copy for MemoryTypeUtilization
Auto Trait Implementations§
impl Freeze for MemoryTypeUtilization
impl RefUnwindSafe for MemoryTypeUtilization
impl Send for MemoryTypeUtilization
impl Sync for MemoryTypeUtilization
impl Unpin for MemoryTypeUtilization
impl UnwindSafe for MemoryTypeUtilization
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