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 the 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§
source§impl Clone for multi_heap_info_t
impl Clone for multi_heap_info_t
source§fn clone(&self) -> multi_heap_info_t
fn clone(&self) -> multi_heap_info_t
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 multi_heap_info_t
impl Debug for multi_heap_info_t
source§impl Default for multi_heap_info_t
impl Default for multi_heap_info_t
source§fn 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 Freeze for multi_heap_info_t
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> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)