pub trait DynMailer: Debug + Send + Sync {
    // Required method
    fn send_mail<'life0, 'life1, 'async_trait>(
        &'life0 self,
        message: Message<'life1>
    ) -> Pin<Box<dyn Future<Output = Result<(), DynMailerError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Object-safe DynMailer trait, usable as ArcMailer (Arc<dyn DynMailer>) or BoxMailer (Box<dyn DynMailer>).

Required Methods§

source

fn send_mail<'life0, 'life1, 'async_trait>( &'life0 self, message: Message<'life1> ) -> Pin<Box<dyn Future<Output = Result<(), DynMailerError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§