Struct wr_malloc_size_of::MallocSizeOfOps
source · 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§
source§impl MallocSizeOfOps
impl MallocSizeOfOps
pub fn new( size_of: unsafe extern "C" fn(ptr: *const c_void) -> usize, malloc_enclosing_size_of: Option<unsafe extern "C" fn(ptr: *const c_void) -> usize>, ) -> Self
sourcepub(crate) fn is_empty<T: ?Sized>(ptr: *const T) -> bool
pub(crate) fn is_empty<T: ?Sized>(ptr: *const T) -> bool
Check if an allocation is empty. This relies on knowledge of how Rust handles empty allocations, which may change in the future.
sourcepub unsafe fn malloc_size_of<T: ?Sized>(&self, ptr: *const T) -> usize
pub unsafe fn malloc_size_of<T: ?Sized>(&self, ptr: *const T) -> usize
Call size_of_op
on ptr
, first checking that the allocation isn’t
empty, because some types (such as Vec
) utilize empty allocations.
sourcepub fn has_malloc_enclosing_size_of(&self) -> bool
pub fn has_malloc_enclosing_size_of(&self) -> bool
Is an enclosing_size_of_op
available?
sourcepub unsafe fn malloc_enclosing_size_of<T>(&self, ptr: *const T) -> usize
pub unsafe fn malloc_enclosing_size_of<T>(&self, ptr: *const T) -> usize
Call enclosing_size_of_op
, which must be available, on ptr
, which
must not be empty.
Auto Trait Implementations§
impl Freeze for MallocSizeOfOps
impl RefUnwindSafe for MallocSizeOfOps
impl Send for MallocSizeOfOps
impl Sync for MallocSizeOfOps
impl Unpin for MallocSizeOfOps
impl UnwindSafe for MallocSizeOfOps
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more