[][src]Struct drone_cortex_m::drv::timer::TimerSleep

pub struct TimerSleep<'a, T: TimerStop> { /* fields omitted */ }

Future created from Timer::sleep.

Methods

impl<'a, T: TimerStop> TimerSleep<'a, T>[src]

pub fn new(
    stop: &'a mut T,
    future: Pin<Box<dyn Future<Output = ()> + Send + 'a>>
) -> Self
[src]

Creates a new TimerSleep.

Trait Implementations

impl<'a, T: TimerStop> Drop for TimerSleep<'a, T>[src]

impl<'a, T: TimerStop> Future for TimerSleep<'a, T>[src]

type Output = ()

The type of value produced on completion.

Auto Trait Implementations

impl<'a, T> Unpin for TimerSleep<'a, T>

impl<'a, T> Send for TimerSleep<'a, T>

impl<'a, T> !Sync for TimerSleep<'a, T>

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

impl<T> FutureExt for T where
    T: Future + ?Sized
[src]