[][src]Struct mailchimp::MailchimpErrorType

pub struct MailchimpErrorType {
    pub error_type: String,
    pub title: String,
    pub status: u64,
    pub detail: String,
    pub instance: String,
}

============ Error Response ==============

Fields

error_type: String

Desc: An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.

title: String

Desc: A short, human-readable summary of the problem type. It shouldn’t change based on the occurrence of the problem, except for purposes of localization.

status: u64

Desc: The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.

detail: String

Desc: A human-readable explanation specific to this occurrence of the problem. Learn more about errors.

instance: String

Desc: A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.

Trait Implementations

impl Clone for MailchimpErrorType[src]

impl Debug for MailchimpErrorType[src]

impl Default for MailchimpErrorType[src]

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

impl Display for MailchimpErrorType[src]

impl Error for MailchimpErrorType[src]

impl Serialize for MailchimpErrorType[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: 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> ToString for T where
    T: Display + ?Sized
[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.