struct TraceStats {
start_ts: Option<f64>,
end_ts: Option<f64>,
events: HashMap<String, u64>,
per_cpu_events: HashMap<String, u64>,
}Fields§
§start_ts: Option<f64>§end_ts: Option<f64>§events: HashMap<String, u64>§per_cpu_events: HashMap<String, u64>Implementations§
Trait Implementations§
Source§impl Debug for TraceStats
impl Debug for TraceStats
Source§impl Default for TraceStats
impl Default for TraceStats
Source§fn default() -> TraceStats
fn default() -> TraceStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TraceStats
impl RefUnwindSafe for TraceStats
impl Send for TraceStats
impl Sync for TraceStats
impl Unpin for TraceStats
impl UnsafeUnpin for TraceStats
impl UnwindSafe for TraceStats
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