[][src]Struct stm32f4xx_hal::dwt::StopWatch

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

Very simple stopwatch

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 Self[src]

Record a new lap NOTE 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) NOTE 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.