pub struct Quoted<'a> {
pub from: &'a str,
pub subject: &'a str,
pub message_id: Option<&'a str>,
pub date: i64,
}Expand description
The message an attribution or a forward subject is about, for the format strings that describe it.
Fields§
§from: &'a strThe From header as written, name and address together.
subject: &'a str§message_id: Option<&'a str>§date: i64When it was sent, seconds since the epoch.
Auto Trait Implementations§
impl<'a> Freeze for Quoted<'a>
impl<'a> RefUnwindSafe for Quoted<'a>
impl<'a> Send for Quoted<'a>
impl<'a> Sync for Quoted<'a>
impl<'a> Unpin for Quoted<'a>
impl<'a> UnsafeUnpin for Quoted<'a>
impl<'a> UnwindSafe for Quoted<'a>
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