esp_idf_sys

Type Alias walker_block_info_t

Source
pub type walker_block_info_t = walker_block_info;
Expand description

@brief Structure used to store block related data passed to the walker callback function

Aliased Type§

struct walker_block_info_t {
    pub ptr: *mut c_void,
    pub size: usize,
    pub used: bool,
}

Fields§

§ptr: *mut c_void

< Pointer to the block data

§size: usize

< The size of the block

§used: bool

< Block status. True: used, False: free

Trait Implementations

Source§

impl Clone for walker_block_info

Source§

fn clone(&self) -> walker_block_info

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 walker_block_info

Source§

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

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

impl Default for walker_block_info

Source§

fn default() -> Self

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

impl Copy for walker_block_info