pub struct PerformanceTrace {
pub name: String,
pub duration: Duration,
pub metrics: HashMap<String, i64>,
}Fields§
§name: String§duration: Duration§metrics: HashMap<String, i64>Trait Implementations§
Source§impl Clone for PerformanceTrace
impl Clone for PerformanceTrace
Source§fn clone(&self) -> PerformanceTrace
fn clone(&self) -> PerformanceTrace
Returns a duplicate 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 PerformanceTrace
impl Debug for PerformanceTrace
Source§impl PartialEq for PerformanceTrace
impl PartialEq for PerformanceTrace
impl StructuralPartialEq for PerformanceTrace
Auto Trait Implementations§
impl Freeze for PerformanceTrace
impl RefUnwindSafe for PerformanceTrace
impl Send for PerformanceTrace
impl Sync for PerformanceTrace
impl Unpin for PerformanceTrace
impl UnwindSafe for PerformanceTrace
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