pub struct SubmitEmailResponse {
pub message_id: String,
pub envelope_id: String,
pub suppressed_recipients: Option<Vec<EmailAddress>>,
}Expand description
Email submission response
Fields§
§message_id: StringSubmitted email’s message ID
envelope_id: StringEnvelope ID (not envelopeMessageId as in docs)
suppressed_recipients: Option<Vec<EmailAddress>>Suppressed recipients (optional)
Trait Implementations§
Source§impl Clone for SubmitEmailResponse
impl Clone for SubmitEmailResponse
Source§fn clone(&self) -> SubmitEmailResponse
fn clone(&self) -> SubmitEmailResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 SubmitEmailResponse
impl Debug for SubmitEmailResponse
Source§impl<'de> Deserialize<'de> for SubmitEmailResponse
impl<'de> Deserialize<'de> for SubmitEmailResponse
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 SubmitEmailResponse
impl RefUnwindSafe for SubmitEmailResponse
impl Send for SubmitEmailResponse
impl Sync for SubmitEmailResponse
impl Unpin for SubmitEmailResponse
impl UnwindSafe for SubmitEmailResponse
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