Struct azul_wr_malloc_size_of::MallocSizeOfOps[][src]

pub struct MallocSizeOfOps {
    pub size_of_op: unsafe extern "C" fn(ptr: *const c_void) -> usize,
    pub enclosing_size_of_op: Option<unsafe extern "C" fn(ptr: *const c_void) -> usize>,
}
Expand description

Operations used when measuring heap usage of data structures.

Fields

size_of_op: unsafe extern "C" fn(ptr: *const c_void) -> usize

A function that returns the size of a heap allocation.

enclosing_size_of_op: Option<unsafe extern "C" fn(ptr: *const c_void) -> usize>

Like size_of_op, but can take an interior pointer. Optional because not all allocators support this operation. If it’s not provided, some memory measurements will actually be computed estimates rather than real and accurate measurements.

Implementations

Call size_of_op on ptr, first checking that the allocation isn’t empty, because some types (such as Vec) utilize empty allocations.

Is an enclosing_size_of_op available?

Call enclosing_size_of_op, which must be available, on ptr, which must not be empty.

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

Performs the conversion.

Performs the conversion.

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.