Struct dhat::AdHocStats
source · #[non_exhaustive]pub struct AdHocStats {
pub total_events: u64,
pub total_units: u64,
}
Expand description
Stats from ad hoc profiling.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.total_events: u64
Number of events recorded for the entire run.
total_units: u64
Number of units recorded for the entire run.
Implementations§
Trait Implementations§
source§impl Clone for AdHocStats
impl Clone for AdHocStats
source§fn clone(&self) -> AdHocStats
fn clone(&self) -> AdHocStats
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AdHocStats
impl Debug for AdHocStats
source§impl PartialEq for AdHocStats
impl PartialEq for AdHocStats
source§fn eq(&self, other: &AdHocStats) -> bool
fn eq(&self, other: &AdHocStats) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AdHocStats
impl StructuralPartialEq for AdHocStats
Auto Trait Implementations§
impl RefUnwindSafe for AdHocStats
impl Send for AdHocStats
impl Sync for AdHocStats
impl Unpin for AdHocStats
impl UnwindSafe for AdHocStats
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