pub struct RunSummaryDuration {
pub total_ms: u128,
pub per_task_ms: HashMap<String, u128>,
}Fields§
§total_ms: u128§per_task_ms: HashMap<String, u128>Trait Implementations§
Source§impl Clone for RunSummaryDuration
impl Clone for RunSummaryDuration
Source§fn clone(&self) -> RunSummaryDuration
fn clone(&self) -> RunSummaryDuration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RunSummaryDuration
impl RefUnwindSafe for RunSummaryDuration
impl Send for RunSummaryDuration
impl Sync for RunSummaryDuration
impl Unpin for RunSummaryDuration
impl UnsafeUnpin for RunSummaryDuration
impl UnwindSafe for RunSummaryDuration
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