[][src]Struct rusoto_sesv2::SendEmailResponse

pub struct SendEmailResponse {
    pub message_id: Option<String>,
}

A unique message ID that you receive when an email is accepted for sending.

Fields

message_id: Option<String>

A unique identifier for the message that is generated when the message is accepted.

It's possible for Amazon SES to accept a message without sending it. This can happen when the message that you're trying to send has an attachment contains a virus, or when you send a templated email that contains invalid personalization content, for example.

Trait Implementations

impl Clone for SendEmailResponse[src]

impl Debug for SendEmailResponse[src]

impl Default for SendEmailResponse[src]

impl<'de> Deserialize<'de> for SendEmailResponse[src]

impl PartialEq<SendEmailResponse> for SendEmailResponse[src]

impl StructuralPartialEq for SendEmailResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.