Struct stripe::RequestError [] [src]

pub struct RequestError {
    pub http_status: u16,
    pub error_type: ErrorType,
    pub message: String,
    pub code: Option<ErrorCode>,
    pub decline_code: Option<String>,
    pub charge: Option<String>,
}

An error reported by stripe in a request's response.

For more details see https://stripe.com/docs/api#errors.

Fields

The HTTP status in the response.

The type of error returned.

A human-readable message providing more details about the error. For card errors, these messages can be shown to end users.

For card errors, a value describing the kind of card error that occured.

For card errors resulting from a bank decline, a string indicating the bank's reason for the decline if they provide one.

The ID of the failed charge, if applicable.

Trait Implementations

impl Debug for RequestError
[src]

Formats the value using the given formatter.

impl Default for RequestError
[src]

Returns the "default value" for a type. Read more

impl Display for RequestError
[src]

Formats the value using the given formatter. Read more

impl Error for RequestError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more