[−][src]Struct smol_executor_trait::Smol
Dummy object implementing executor-trait common interfaces on top of smol
Trait Implementations
impl BlockingExecutor for Smol[src]
pub fn spawn_blocking<'life0, 'async_trait>(
&'life0 self,
f: Box<dyn FnOnce() + Send + 'static>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait, [src]
&'life0 self,
f: Box<dyn FnOnce() + Send + 'static>
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
impl Clone for Smol[src]
impl Copy for Smol[src]
impl Debug for Smol[src]
impl Default for Smol[src]
impl Eq for Smol[src]
impl Executor for Smol[src]
pub fn block_on(&self, f: Pin<Box<dyn Future<Output = ()>>>)[src]
pub fn spawn(
&self,
f: Pin<Box<dyn Future<Output = ()> + Send>>
) -> Box<dyn Task>[src]
&self,
f: Pin<Box<dyn Future<Output = ()> + Send>>
) -> Box<dyn Task>
pub fn spawn_local(
&self,
f: Pin<Box<dyn Future<Output = ()>>>
) -> Result<Box<dyn Task>, LocalExecutorError>[src]
&self,
f: Pin<Box<dyn Future<Output = ()>>>
) -> Result<Box<dyn Task>, LocalExecutorError>
impl Ord for Smol[src]
pub fn cmp(&self, other: &Smol) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<Smol> for Smol[src]
pub fn eq(&self, other: &Smol) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Smol> for Smol[src]
pub fn partial_cmp(&self, other: &Smol) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for Smol[src]
impl StructuralPartialEq for Smol[src]
Auto Trait Implementations
impl RefUnwindSafe for Smol[src]
impl Send for Smol[src]
impl Sync for Smol[src]
impl Unpin for Smol[src]
impl UnwindSafe for Smol[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<E> FullExecutor for E where
E: Executor + BlockingExecutor, [src]
E: Executor + BlockingExecutor,
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,