pub struct Message {
pub id: Option<usize>,
pub size: usize,
pub subject: Option<String>,
pub sender: Option<String>,
pub recipients: Vec<String>,
pub created_at: DateTime<Utc>,
pub typ: String,
pub parts: Vec<MessagePart>,
pub charset: String,
pub source: Vec<u8>,
}Fields§
§id: Option<usize>§size: usize§subject: Option<String>§sender: Option<String>§recipients: Vec<String>§created_at: DateTime<Utc>§typ: String§parts: Vec<MessagePart>§charset: String§source: Vec<u8>Implementations§
Trait Implementations§
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 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