Sw

Type Alias Sw 

Source
pub type Sw = Stopwatch<Instant>;
Available on crate feature std only.
Expand description

Alias to Stopwatch using the standard library’s Instant type.

Aliased Type§

pub struct Sw {
    pub elapsed: Duration,
    pub start: Option<Instant>,
}

Fields§

§elapsed: Duration

Accumulated elapsed time.

§start: Option<Instant>

The instant at which the stopwatch was started, if it is running. Otherwise, None.