pub struct TelemetryTimer {
pub start_time: Instant,
pub end_time: Option<Instant>,
pub stage_times: StageTimes,
}Fields§
§start_time: Instant§end_time: Option<Instant>§stage_times: StageTimesImplementations§
Trait Implementations§
Source§impl Clone for TelemetryTimer
impl Clone for TelemetryTimer
Source§fn clone(&self) -> TelemetryTimer
fn clone(&self) -> TelemetryTimer
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 moreAuto Trait Implementations§
impl Freeze for TelemetryTimer
impl RefUnwindSafe for TelemetryTimer
impl Send for TelemetryTimer
impl Sync for TelemetryTimer
impl Unpin for TelemetryTimer
impl UnsafeUnpin for TelemetryTimer
impl UnwindSafe for TelemetryTimer
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