pub struct DraftHeaders {
pub from: Option<String>,
pub to: String,
pub cc: Option<String>,
pub subject: String,
pub in_reply_to: Option<String>,
pub references: Option<String>,
}Fields§
§from: Option<String>From line when an identity override applies (reverse_name, a folder/recipient rule, the account); the user can edit it, and finalize falls back to the default identity when absent.
to: String§cc: Option<String>§subject: String§in_reply_to: Option<String>§references: Option<String>Auto Trait Implementations§
impl Freeze for DraftHeaders
impl RefUnwindSafe for DraftHeaders
impl Send for DraftHeaders
impl Sync for DraftHeaders
impl Unpin for DraftHeaders
impl UnsafeUnpin for DraftHeaders
impl UnwindSafe for DraftHeaders
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