pub struct Stats {
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
Snapshot of exact DHAT collector state.
Fields§
§enabled: bool§incomplete: boolTrue when raw-OS collector storage hit its configured budget or an internal allocation failed. The application allocation still completed, but the resulting profile is intentionally marked partial.
total_bytes: u64§total_blocks: u64§live_bytes: u64§live_blocks: u64§peak_bytes: u64§peak_blocks: u64§dropped: u64§internal_bytes: u64Trait Implementations§
impl Eq for Stats
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnsafeUnpin for Stats
impl UnwindSafe for Stats
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