Struct esp_idf_sys::multi_heap_info_t
source · [−]#[repr(C)]pub struct multi_heap_info_t {
pub total_free_bytes: usize,
pub total_allocated_bytes: usize,
pub largest_free_block: usize,
pub minimum_free_bytes: usize,
pub allocated_blocks: usize,
pub free_blocks: usize,
pub total_blocks: usize,
}
Expand description
@brief Structure to access heap metadata via multi_heap_get_info
Fields
total_free_bytes: usize
< Total free bytes in the heap. Equivalent to multi_free_heap_size().
total_allocated_bytes: usize
< Total bytes allocated to data in the heap.
largest_free_block: usize
< Size of largest free block in the heap. This is the largest malloc-able size.
minimum_free_bytes: usize
< Lifetime minimum free heap size. Equivalent to multi_minimum_free_heap_size().
allocated_blocks: usize
< Number of (variable size) blocks allocated in the heap.
free_blocks: usize
< Number of (variable size) free blocks in the heap.
total_blocks: usize
< Total number of (variable size) blocks in the heap.
Trait Implementations
sourceimpl Clone for multi_heap_info_t
impl Clone for multi_heap_info_t
sourcefn clone(&self) -> multi_heap_info_t
fn clone(&self) -> multi_heap_info_t
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for multi_heap_info_t
impl Debug for multi_heap_info_t
sourceimpl Default for multi_heap_info_t
impl Default for multi_heap_info_t
sourcefn default() -> multi_heap_info_t
fn default() -> multi_heap_info_t
Returns the “default value” for a type. Read more
impl Copy for multi_heap_info_t
Auto Trait Implementations
impl RefUnwindSafe for multi_heap_info_t
impl Send for multi_heap_info_t
impl Sync for multi_heap_info_t
impl Unpin for multi_heap_info_t
impl UnwindSafe for multi_heap_info_t
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more