pub trait LapinSmolExt {
// Required methods
fn with_smol_executor(self) -> Self
where Self: Sized;
fn with_smol_reactor(self) -> Self
where Self: Sized;
// Provided method
fn with_smol(self) -> Self
where Self: Sized { ... }
}๐Deprecated: use smol-executor-trait and async-reactor-trait directly instead
Required Methodsยง
fn with_smol_executor(self) -> Selfwhere
Self: Sized,
๐Deprecated: use smol-executor-trait directly instead
fn with_smol_reactor(self) -> Selfwhere
Self: Sized,
๐Deprecated: use async-reactor-trait directly instead
Provided Methodsยง
fn with_smol(self) -> Selfwhere
Self: Sized,
๐Deprecated: use smol-executor-trait directly instead
Implementations on Foreign Typesยง
Sourceยงimpl LapinSmolExt for ConnectionProperties
impl LapinSmolExt for ConnectionProperties
Sourceยงfn with_smol_executor(self) -> Self
fn with_smol_executor(self) -> Self
๐Deprecated: use smol-executor-trait directly instead
Sourceยงfn with_smol_reactor(self) -> Self
fn with_smol_reactor(self) -> Self
๐Deprecated: use async-reactor-trait directly instead