[][src]Struct clock_core::stopwatch::StopwatchData

pub struct StopwatchData {
    pub elapsed: Duration,
    pub pause_moments: Vec<DateTime<Local>>,
    pub start_moments: Vec<DateTime<Local>>,
    pub lap_moments: Vec<DateTime<Local>>,
    pub laps: Vec<Duration>,
}

The data returned by Stopwatch upon .stopping (i.e. resetting)

Fields

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

Implementations

impl StopwatchData[src]

pub fn start(&self) -> DateTime<Local>[src]

pub fn stop(&self) -> DateTime<Local>[src]

Trait Implementations

impl Debug for StopwatchData[src]

impl Default for StopwatchData[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, 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.