//! Module dedicated to email message attachment.
//!//! This module contains everything related to email message
//! attachments.
/// The email message attachment.
////// Represents a simplified version of an email message attachment.
#[derive(Clone, Debug, Default, Eq, PartialEq)]pubstructAttachment{/// The optional attachment filename.
pubfilename:Option<String>,
/// The attachment MIME type.
pubmime: String,
/// The raw content of the attachment.
pubbody:Vec<u8>,
}