[][src]Struct mailgun_api::api::ReceiveMessage

pub struct ReceiveMessage {
    pub received: String,
    pub stripped_signature: String,
    pub message_id: String,
    pub from: String,
    pub sender: String,
    pub recipients: String,
    pub subject_message: String,
    pub content_transfer_encoding: String,
    pub email_sender: String,
    pub attachments: Vec<Attachments>,
    pub to: String,
    pub stripped_html: String,
    pub content_id_map: Value,
    pub stripped_text: String,
    pub date: String,
    pub from_email: String,
    pub message_headers: Vec<Vec<String>>,
    pub mime_version: String,
    pub content_type: String,
    pub body_plain: String,
    pub subject: String,
}

Receive email

Fields

received: Stringstripped_signature: Stringmessage_id: Stringfrom: Stringsender: Stringrecipients: Stringsubject_message: Stringcontent_transfer_encoding: Stringemail_sender: Stringattachments: Vec<Attachments>to: Stringstripped_html: Stringcontent_id_map: Valuestripped_text: Stringdate: Stringfrom_email: Stringmessage_headers: Vec<Vec<String>>mime_version: Stringcontent_type: Stringbody_plain: Stringsubject: String

Trait Implementations

impl Debug for ReceiveMessage[src]

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

impl Serialize for ReceiveMessage[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.