Trait drone_cortex_m::thread::PFuture [] [src]

pub trait PFuture: Future {
    fn wait(self) -> Result<Self::Item, Self::Error>;
}

Platform future extensions.

Required Methods

Blocks the current thread until the future is resolved.

Implementors