Trait async_mailer::Mailer

source ·
pub trait Mailer: Debug + Send + Sync {
    type Error;

    // Required method
    fn send_mail<'life0, 'life1, 'async_trait>(
        &'life0 self,
        message: Message<'life1>
    ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait, Global>>
       where 'life0: 'async_trait,
             'life1: 'async_trait,
             Self: 'async_trait;
}

Required Associated Types§

Required Methods§

source

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

Implementors§