#[repr(C)]
pub struct mi_heap_area_t { pub blocks: *mut c_void, pub reserved: usize, pub committed: usize, pub used: usize, pub block_size: usize, pub full_block_size: usize, }
Expand description

An area of heap space contains blocks of a single size.

The bytes in freed blocks are committed - used.

Fields

blocks: *mut c_void

Start of the area containing heap blocks.

reserved: usize

Bytes reserved for this area.

committed: usize

Current committed bytes of this area.

used: usize

Bytes in use by allocated blocks.

block_size: usize

Size in bytes of one block.

full_block_size: usize

Size in bytes of a full block including padding and metadata.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.