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

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

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.