esp_idf_sys

Type Alias HeapStats_t

Source
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

Source§

fn clone(&self) -> xHeapStats

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for xHeapStats

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for xHeapStats

Source§

fn default() -> xHeapStats

Returns the “default value” for a type. Read more
Source§

impl Copy for xHeapStats