[][src]Struct clock_core::stopwatch::StopWatch

pub struct StopWatch {
    pub elapsed: Duration,
    pub lap_elapsed: Duration,
    pub pause_moments: Vec<DateTime<Local>>,
    pub start_moments: Vec<DateTime<Local>>,
    pub lap_moments: Vec<DateTime<Local>>,
    pub laps: Vec<Duration>,
    pub paused: bool,
}

Fields

elapsed: Durationlap_elapsed: Durationpause_moments: Vec<DateTime<Local>>start_moments: Vec<DateTime<Local>>lap_moments: Vec<DateTime<Local>>laps: Vec<Duration>paused: bool

Implementations

impl StopWatch[src]

pub fn new() -> Self[src]

Returns stopwatch reset to zero

pub fn read(&self) -> Duration[src]

Read the total time elapsed

pub fn pause_or_resume(&mut self)[src]

pub fn lap(&mut self) -> Option<Duration>[src]

Trait Implementations

impl Clone for StopWatch[src]

impl Debug for StopWatch[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.