#[repr(C)]pub struct mi_prof_sample_info_t {
pub stack: *const *const c_void,
pub depth: usize,
pub live_objects: usize,
pub live_bytes: usize,
pub accum_objects: usize,
pub accum_bytes: usize,
}Expand description
Mirrors mi_prof_sample_info_t (include/mimalloc/profile.h) field-for-field.
Fields§
§stack: *const *const c_void§depth: usize§live_objects: usize§live_bytes: usize§accum_objects: usize§accum_bytes: usizeAuto Trait Implementations§
impl !Send for mi_prof_sample_info_t
impl !Sync for mi_prof_sample_info_t
impl Freeze for mi_prof_sample_info_t
impl RefUnwindSafe for mi_prof_sample_info_t
impl Unpin for mi_prof_sample_info_t
impl UnsafeUnpin for mi_prof_sample_info_t
impl UnwindSafe for mi_prof_sample_info_t
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