[][src]Struct os_clock::Timer

pub struct Timer<'c, C: Clock> {
    pub start: Duration,
    pub clock: &'c C,
}

Helper to measure time elapsed

Get a timer with Clock.start_timer()

Fields

start: Durationclock: &'c C

Implementations

impl<'c, C: Clock> Timer<'c, C>[src]

pub fn elapsed(&self) -> Result<Duration>[src]

Returns the ellapsed time since start

pub fn end(self) -> Result<Duration>[src]

Drops the timer and returns the ellapsed time since start

Auto Trait Implementations

impl<'c, C> RefUnwindSafe for Timer<'c, C> where
    C: RefUnwindSafe

impl<'c, C> Send for Timer<'c, C> where
    C: Sync

impl<'c, C> Sync for Timer<'c, C> where
    C: Sync

impl<'c, C> Unpin for Timer<'c, C>

impl<'c, C> UnwindSafe for Timer<'c, C> where
    C: RefUnwindSafe

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.