pub enum MailBody {
Text(String),
Html(MailBodyHtml),
File(MailBodyFile),
}
Expand description
Types of email messages
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MailBody
impl RefUnwindSafe for MailBody
impl Send for MailBody
impl Sync for MailBody
impl Unpin for MailBody
impl UnwindSafe for MailBody
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more