Struct stm32f407g_disc::dwt::StopWatch[][src]

pub struct StopWatch<'l> { /* fields omitted */ }

Very simple stopwatch which reads from DWT Cycle Counter to record timing.

Since DWT Cycle Counter is a 32-bit counter that wraps around to 0 on overflow, users should be aware that StopWatch cannot correctly measure laps which take longer than u32::MAX cycles

Implementations

impl<'l> StopWatch<'l>[src]

pub fn lap_count(&self) -> usize[src]

Returns the numbers of laps recorded

pub fn reset(&mut self)[src]

Resets recorded laps to 0 and sets 0 offset

pub fn lap(&mut self) -> &mut StopWatch<'l>[src]

Record a new lap.

If lap count exceeds maximum, the last lap is updated

pub fn lap_time(&self, n: usize) -> Option<ClockDuration>[src]

Calculate the time of lap n (n starting with 1).

Returns None if n is out of range

Auto Trait Implementations

impl<'l> Send for StopWatch<'l>

impl<'l> Sync for StopWatch<'l>

impl<'l> Unpin for StopWatch<'l>

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> Same<T> for T

type Output = T

Should always be Self

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.