Crate async_mailer_core

Source
Expand description

Core trait for async-mailer. Use async-mailer instead.

Re-exports§

pub use mail_send;

Modules§

util

Traits§

DynMailer
Object-safe DynMailer trait, usable as &DynMailer, ArcMailer (Arc<dyn DynMailer>) or BoxMailer (Box<dyn DynMailer>).
Mailer
Statically typed Mailer, to be used in impl Mailer or <M: Mailer> bounds.

Type Aliases§

ArcMailer
Arc-wrapped dyn DynMailer
BoxMailer
Boxed dyn DynMailer
DynMailerError
Type-erased mailer error, for use of DynMailer as trait object.

Attribute Macros§

async_trait