pub struct InboxSummary {
pub account_id: String,
pub unread: u32,
pub total: u32,
pub most_recent_subject: Option<String>,
}Fields§
§account_id: String§unread: u32§total: u32§most_recent_subject: Option<String>Trait Implementations§
Source§impl Clone for InboxSummary
impl Clone for InboxSummary
Source§fn clone(&self) -> InboxSummary
fn clone(&self) -> InboxSummary
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 InboxSummary
impl Debug for InboxSummary
Source§impl<'de> Deserialize<'de> for InboxSummary
impl<'de> Deserialize<'de> for InboxSummary
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 InboxSummary
impl RefUnwindSafe for InboxSummary
impl Send for InboxSummary
impl Sync for InboxSummary
impl Unpin for InboxSummary
impl UnsafeUnpin for InboxSummary
impl UnwindSafe for InboxSummary
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