pub struct EmailSummary {
pub id: String,
pub mid: Option<String>,
pub subject: String,
pub from: String,
pub epoch: Option<i64>,
pub list_name: Option<String>,
}Fields§
§id: String§mid: Option<String>§subject: String§from: String§epoch: Option<i64>§list_name: Option<String>Implementations§
Source§impl EmailSummary
impl EmailSummary
Trait Implementations§
Source§impl Clone for EmailSummary
impl Clone for EmailSummary
Source§fn clone(&self) -> EmailSummary
fn clone(&self) -> EmailSummary
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 EmailSummary
impl Debug for EmailSummary
Source§impl<'de> Deserialize<'de> for EmailSummary
impl<'de> Deserialize<'de> for EmailSummary
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
Auto Trait Implementations§
impl Freeze for EmailSummary
impl RefUnwindSafe for EmailSummary
impl Send for EmailSummary
impl Sync for EmailSummary
impl Unpin for EmailSummary
impl UnsafeUnpin for EmailSummary
impl UnwindSafe for EmailSummary
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