pub struct EmailMessageSummary {Show 13 fields
pub id: EmailMessageId,
pub folder: Option<EmailFolder>,
pub from: Vec<EmailAddress>,
pub to: Vec<EmailAddress>,
pub cc: Vec<EmailAddress>,
pub subject: String,
pub preview: Option<String>,
pub received_at: Option<String>,
pub sent_at: Option<String>,
pub unread: bool,
pub has_attachments: bool,
pub attachment_count: Option<u32>,
pub attributes: Vec<EmailAttribute>,
}Fields§
§id: EmailMessageId§folder: Option<EmailFolder>§from: Vec<EmailAddress>§to: Vec<EmailAddress>§cc: Vec<EmailAddress>§subject: String§preview: Option<String>§received_at: Option<String>§sent_at: Option<String>§unread: bool§has_attachments: bool§attachment_count: Option<u32>§attributes: Vec<EmailAttribute>Trait Implementations§
Source§impl Clone for EmailMessageSummary
impl Clone for EmailMessageSummary
Source§fn clone(&self) -> EmailMessageSummary
fn clone(&self) -> EmailMessageSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EmailMessageSummary
impl Debug for EmailMessageSummary
Source§impl<'de> Deserialize<'de> for EmailMessageSummary
impl<'de> Deserialize<'de> for EmailMessageSummary
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 EmailMessageSummary
Source§impl PartialEq for EmailMessageSummary
impl PartialEq for EmailMessageSummary
Source§fn eq(&self, other: &EmailMessageSummary) -> bool
fn eq(&self, other: &EmailMessageSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EmailMessageSummary
impl Serialize for EmailMessageSummary
impl StructuralPartialEq for EmailMessageSummary
Auto Trait Implementations§
impl Freeze for EmailMessageSummary
impl RefUnwindSafe for EmailMessageSummary
impl Send for EmailMessageSummary
impl Sync for EmailMessageSummary
impl Unpin for EmailMessageSummary
impl UnsafeUnpin for EmailMessageSummary
impl UnwindSafe for EmailMessageSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.