pub struct DraftEmail {
pub to: String,
pub subject: String,
pub body: String,
pub cc: Option<String>,
pub bcc: Option<String>,
pub thread_id: Option<String>,
pub in_reply_to: Option<String>,
pub references: Option<String>,
}Fields§
§to: String§subject: String§body: String§cc: Option<String>§bcc: Option<String>§thread_id: Option<String>§in_reply_to: Option<String>§references: Option<String>Trait Implementations§
Source§impl Clone for DraftEmail
impl Clone for DraftEmail
Source§fn clone(&self) -> DraftEmail
fn clone(&self) -> DraftEmail
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 DraftEmail
impl Debug for DraftEmail
Source§impl<'de> Deserialize<'de> for DraftEmail
impl<'de> Deserialize<'de> for DraftEmail
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 DraftEmail
impl RefUnwindSafe for DraftEmail
impl Send for DraftEmail
impl Sync for DraftEmail
impl Unpin for DraftEmail
impl UnsafeUnpin for DraftEmail
impl UnwindSafe for DraftEmail
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