Trait Outgoing
fxa_email_service::queues
pub trait Outgoing: Debug + Sync { fn send( &'static self, body: &Notification ) -> Box<dyn Future<Item = String, Error = AppError>>; }
An outgoing notification queue.
fn send( &'static self, body: &Notification) -> Box<dyn Future<Item = String, Error = AppError>>
impl Outgoing for Queue
fn send( &'static self, notification: &Notification) -> Box<dyn Future<Item = String, Error = AppError>>