pub struct GmailSendMessageParams {
pub to: String,
pub subject: String,
pub body: String,
pub cc: Option<String>,
pub bcc: Option<String>,
}Expand description
Parameters for gmail().send_message().
Fields§
§to: String§subject: String§body: String§cc: Option<String>§bcc: Option<String>Trait Implementations§
Source§impl Clone for GmailSendMessageParams
impl Clone for GmailSendMessageParams
Source§fn clone(&self) -> GmailSendMessageParams
fn clone(&self) -> GmailSendMessageParams
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 GmailSendMessageParams
impl Debug for GmailSendMessageParams
Source§impl Default for GmailSendMessageParams
impl Default for GmailSendMessageParams
Source§fn default() -> GmailSendMessageParams
fn default() -> GmailSendMessageParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GmailSendMessageParams
impl RefUnwindSafe for GmailSendMessageParams
impl Send for GmailSendMessageParams
impl Sync for GmailSendMessageParams
impl Unpin for GmailSendMessageParams
impl UnsafeUnpin for GmailSendMessageParams
impl UnwindSafe for GmailSendMessageParams
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