Trait email::backend::feature::AsyncTryIntoBackendFeatures
source · pub trait AsyncTryIntoBackendFeatures<B>where
B: BackendFeatures,{
// Required method
fn try_into_backend<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = AnyResult<B>> + Send + 'async_trait>>
where Self: 'async_trait;
}
Expand description
The backend implementation builder.
This trait defines how to build a backend implementation from a
BackendFeatures
implementation.