Trait embedded_svc::utils::asyncify::Asyncify
source · pub trait Asyncify {
type AsyncWrapper<S>: AsyncWrapper<S>;
// Provided methods
fn into_async(self) -> Self::AsyncWrapper<Self>
where Self: Sized { ... }
fn as_async(&mut self) -> Self::AsyncWrapper<&mut Self> { ... }
}Required Associated Types§
type AsyncWrapper<S>: AsyncWrapper<S>
Provided Methods§
fn into_async(self) -> Self::AsyncWrapper<Self>where
Self: Sized,
fn as_async(&mut self) -> Self::AsyncWrapper<&mut Self>
Object Safety§
This trait is not object safe.