Trait drone_cortex_m::thread::PFuture
[−]
[src]
pub trait PFuture: Future { fn wait(self) -> Result<Self::Item, Self::Error>; }
Platform future extensions.
Required Methods
fn wait(self) -> Result<Self::Item, Self::Error>
Blocks the current thread until the future is resolved.
Implementors
impl<T: Future> PFuture for T