Expand description
Core trait for async-mailer
. Use async-mailer
instead.
Re-exports§
pub use mail_send;
Modules§
Traits§
- DynMailer
- Object-safe
DynMailer
trait, usable as&DynMailer
,ArcMailer
(Arc<dyn DynMailer>
) orBoxMailer
(Box<dyn DynMailer>
). - Mailer
- Statically typed
Mailer
, to be used inimpl Mailer
or<M: Mailer>
bounds.
Type Aliases§
- ArcMailer
- Arc-wrapped dyn
DynMailer
- BoxMailer
- Boxed dyn
DynMailer
- DynMailer
Error - Type-erased mailer error, for use of
DynMailer
as trait object.