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
impl Clone for walker_block_info
Source§fn clone(&self) -> walker_block_info
fn clone(&self) -> walker_block_info
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 more