[][src]Struct mailslurp::models::sent_email_dto::SentEmailDto

pub struct SentEmailDto {
    pub attachments: Option<Vec<String>>,
    pub bcc: Option<Vec<String>>,
    pub body: Option<String>,
    pub body_md5_hash: Option<String>,
    pub cc: Option<Vec<String>>,
    pub charset: Option<String>,
    pub from: Option<String>,
    pub id: Option<String>,
    pub inbox_id: Option<String>,
    pub is_html: Option<bool>,
    pub reply_to: Option<String>,
    pub sent_at: String,
    pub subject: Option<String>,
    pub to: Option<Vec<String>>,
    pub user_id: Option<String>,
}

SentEmailDto : Sent email details

Fields

attachments: Option<Vec<String>>

Array of IDs of attachments that were sent with this email

bcc: Option<Vec<String>>body: Option<String>body_md5_hash: Option<String>

MD5 Hash

cc: Option<Vec<String>>charset: Option<String>from: Option<String>id: Option<String>

ID of sent email

inbox_id: Option<String>

Inbox ID email was sent from

is_html: Option<bool>reply_to: Option<String>sent_at: Stringsubject: Option<String>to: Option<Vec<String>>

Recipients email was sent to

user_id: Option<String>

User ID

Implementations

impl SentEmailDto[src]

pub fn new(sent_at: String) -> SentEmailDto[src]

Sent email details

Trait Implementations

impl Clone for SentEmailDto[src]

impl Debug for SentEmailDto[src]

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

impl PartialEq<SentEmailDto> for SentEmailDto[src]

impl Serialize for SentEmailDto[src]

impl StructuralPartialEq for SentEmailDto[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> 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.