[][src]Struct mailgun_api::api::DeliveryStatus

pub struct DeliveryStatus {
    pub tls: bool,
    pub mx_host: String,
    pub attempt_no: u16,
    pub description: String,
    pub session_seconds: f32,
    pub utf8: bool,
    pub code: u16,
    pub message: String,
    pub certificate_verified: bool,
}

Fields

tls: boolmx_host: Stringattempt_no: u16description: Stringsession_seconds: f32utf8: boolcode: u16message: Stringcertificate_verified: bool

Trait Implementations

impl Debug for DeliveryStatus[src]

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

impl Serialize for DeliveryStatus[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.