pub type HeapStats_t = xHeapStats;
Aliased Type§
struct HeapStats_t {
pub xAvailableHeapSpaceInBytes: usize,
pub xSizeOfLargestFreeBlockInBytes: usize,
pub xSizeOfSmallestFreeBlockInBytes: usize,
pub xNumberOfFreeBlocks: usize,
pub xMinimumEverFreeBytesRemaining: usize,
pub xNumberOfSuccessfulAllocations: usize,
pub xNumberOfSuccessfulFrees: usize,
}
Fields§
§xAvailableHeapSpaceInBytes: usize
§xSizeOfLargestFreeBlockInBytes: usize
§xSizeOfSmallestFreeBlockInBytes: usize
§xNumberOfFreeBlocks: usize
§xMinimumEverFreeBytesRemaining: usize
§xNumberOfSuccessfulAllocations: usize
§xNumberOfSuccessfulFrees: usize
Trait Implementations
Source§impl Clone for xHeapStats
impl Clone for xHeapStats
Source§fn clone(&self) -> xHeapStats
fn clone(&self) -> xHeapStats
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for xHeapStats
impl Debug for xHeapStats
Source§impl Default for xHeapStats
impl Default for xHeapStats
Source§fn default() -> xHeapStats
fn default() -> xHeapStats
Returns the “default value” for a type. Read more