pub struct MessageSummary {
pub id: MessageId,
pub from: String,
pub subject: String,
pub date: String,
pub unread: bool,
pub has_invite: bool,
}Fields§
§id: MessageId§from: String§subject: String§date: String§unread: bool§has_invite: boolTrait Implementations§
Source§impl Clone for MessageSummary
impl Clone for MessageSummary
Source§fn clone(&self) -> MessageSummary
fn clone(&self) -> MessageSummary
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 MessageSummary
impl Debug for MessageSummary
Source§impl PartialEq for MessageSummary
impl PartialEq for MessageSummary
Source§fn eq(&self, other: &MessageSummary) -> bool
fn eq(&self, other: &MessageSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MessageSummary
impl StructuralPartialEq for MessageSummary
Auto Trait Implementations§
impl Freeze for MessageSummary
impl RefUnwindSafe for MessageSummary
impl Send for MessageSummary
impl Sync for MessageSummary
impl Unpin for MessageSummary
impl UnsafeUnpin for MessageSummary
impl UnwindSafe for MessageSummary
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