#[repr(C)]pub struct mi_dhat_stats_t {
pub size: usize,
pub version: c_int,
pub enabled: bool,
pub incomplete: bool,
pub total_bytes: u64,
pub total_blocks: u64,
pub live_bytes: u64,
pub live_blocks: u64,
pub peak_bytes: u64,
pub peak_blocks: u64,
pub dropped: u64,
pub internal_bytes: u64,
}Expand description
Mirrors mi_dhat_stats_t (include/mimalloc/dhat.h) field-for-field.
Fields§
§size: usize§version: c_int§enabled: bool§incomplete: bool§total_bytes: u64§total_blocks: u64§live_bytes: u64§live_blocks: u64§peak_bytes: u64§peak_blocks: u64§dropped: u64§internal_bytes: u64Auto Trait Implementations§
impl Freeze for mi_dhat_stats_t
impl RefUnwindSafe for mi_dhat_stats_t
impl Send for mi_dhat_stats_t
impl Sync for mi_dhat_stats_t
impl Unpin for mi_dhat_stats_t
impl UnsafeUnpin for mi_dhat_stats_t
impl UnwindSafe for mi_dhat_stats_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