pub struct ReplyEmailRequest {
pub account_id: Option<String>,
pub to: Option<Vec<String>>,
pub cc: Option<Vec<String>>,
pub bcc: Option<Vec<String>>,
pub body: String,
pub html: Option<bool>,
pub attachments: Option<Vec<AttachmentInput>>,
}Expand description
ReplyEmailRequest : Reply to a specific email. to/cc/bcc are optional — the platform falls back to the original sender / recipients when omitted.
Fields§
§account_id: Option<String>§to: Option<Vec<String>>§cc: Option<Vec<String>>§bcc: Option<Vec<String>>§body: String§html: Option<bool>§attachments: Option<Vec<AttachmentInput>>Implementations§
Source§impl ReplyEmailRequest
impl ReplyEmailRequest
Sourcepub fn new(body: String) -> ReplyEmailRequest
pub fn new(body: String) -> ReplyEmailRequest
Reply to a specific email. to/cc/bcc are optional — the platform falls back to the original sender / recipients when omitted.
Trait Implementations§
Source§impl Clone for ReplyEmailRequest
impl Clone for ReplyEmailRequest
Source§fn clone(&self) -> ReplyEmailRequest
fn clone(&self) -> ReplyEmailRequest
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 ReplyEmailRequest
impl Debug for ReplyEmailRequest
Source§impl Default for ReplyEmailRequest
impl Default for ReplyEmailRequest
Source§fn default() -> ReplyEmailRequest
fn default() -> ReplyEmailRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplyEmailRequest
impl<'de> Deserialize<'de> for ReplyEmailRequest
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
Source§impl PartialEq for ReplyEmailRequest
impl PartialEq for ReplyEmailRequest
Source§fn eq(&self, other: &ReplyEmailRequest) -> bool
fn eq(&self, other: &ReplyEmailRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReplyEmailRequest
impl Serialize for ReplyEmailRequest
impl StructuralPartialEq for ReplyEmailRequest
Auto Trait Implementations§
impl Freeze for ReplyEmailRequest
impl RefUnwindSafe for ReplyEmailRequest
impl Send for ReplyEmailRequest
impl Sync for ReplyEmailRequest
impl Unpin for ReplyEmailRequest
impl UnsafeUnpin for ReplyEmailRequest
impl UnwindSafe for ReplyEmailRequest
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