[][src]Struct stm32l4xx_hal::time::MonoTimer

pub struct MonoTimer { /* fields omitted */ }

A monotonic nondecreasing timer

Methods

impl MonoTimer[src]

pub fn new(dwt: DWT, clocks: Clocks) -> Self[src]

Creates a new Monotonic timer

pub fn frequency(&self) -> Hertz[src]

Returns the frequency at which the monotonic timer is operating at

pub fn now(&self) -> Instant[src]

Returns an Instant corresponding to "now"

Trait Implementations

impl Clone for MonoTimer[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MonoTimer[src]

impl Copy for MonoTimer[src]

Auto Trait Implementations

impl Send for MonoTimer

impl Sync for MonoTimer

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Same for T

type Output = T

Should always be Self