pub struct CountingStep {
pub step_name: String,
pub counts: HashMap<String, u64>,
}Expand description
A counter step: counts events by variant name.
Fields§
§step_name: String§counts: HashMap<String, u64>Implementations§
Trait Implementations§
Source§impl ProfilingStep for CountingStep
impl ProfilingStep for CountingStep
Auto Trait Implementations§
impl Freeze for CountingStep
impl RefUnwindSafe for CountingStep
impl Send for CountingStep
impl Sync for CountingStep
impl Unpin for CountingStep
impl UnsafeUnpin for CountingStep
impl UnwindSafe for CountingStep
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