Trait email::backend::BackendContextBuilder
source · pub trait BackendContextBuilder: Clone + Send + Sync {
type Context: Send + Sync;
// Required method
fn build<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = Result<Self::Context>> + Send + 'async_trait>>
where Self: 'async_trait;
}
Required Associated Types§
Required Methods§
fn build<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = Result<Self::Context>> + Send + 'async_trait>>where
Self: 'async_trait,
Object Safety§
This trait is not object safe.