pub struct Message {Show 15 fields
pub id: MessageId,
pub thread_id: ThreadId,
pub subject: String,
pub from: Vec<Address>,
pub to: Vec<Address>,
pub cc: Vec<Address>,
pub bcc: Vec<Address>,
pub reply_to: Vec<Address>,
pub date: String,
pub timestamp: i64,
pub tags: BTreeSet<String>,
pub in_reply_to: Option<String>,
pub references: Vec<String>,
pub parts: Vec<PartMeta>,
pub excluded: bool,
}Fields§
§id: MessageId§thread_id: ThreadId§subject: String§from: Vec<Address>§to: Vec<Address>§cc: Vec<Address>§bcc: Vec<Address>§reply_to: Vec<Address>§date: String§timestamp: i64§in_reply_to: Option<String>§references: Vec<String>§parts: Vec<PartMeta>§excluded: boolImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Message
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin for Message
impl UnwindSafe for Message
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