[]Enum xe621::error::Error

pub enum Error {
    AboveLimit {
        option: String,
        val: u64,
        max: u64,
    },
    Http {
        code: u16,
        reason: Option<String>,
    },
    Serial {
        desc: String,
    },
    Deserialization {
        key: String,
        value: String,
    },
    CannotSendRequest {
        desc: String,
    },
    CannotCreateClient {
        desc: String,
    },
    InvalidHeaderValue {
        desc: String,
    },
}

Enum for xe621 errors.

Variants

AboveLimit

The given value for the some option is above the maximum value allowed in its context. E.g.: order:score limit:350 is an invalid request because the maximum limit for ordered queries is 320.

Fields of AboveLimit

option: Stringval: u64max: u64
Http

An HTTP error has occurred

Fields of Http

code: u16reason: Option<String>
Serial

Serialization error. Contains a description of the error.

Fields of Serial

desc: String
Deserialization

Post JSON parsing error. The first value is the key of the invalid value, the second is its value.

Fields of Deserialization

key: Stringvalue: String
CannotSendRequest

The request couldn't be send. Contains a description of the error.

Fields of CannotSendRequest

desc: String
CannotCreateClient

The client couldn't be created. Contains a description of the error.

Fields of CannotCreateClient

desc: String
InvalidHeaderValue

The given HTTP header is invalid

Fields of InvalidHeaderValue

desc: String

Trait Implementations

impl Debug for Error

impl Display for Error

impl Error for Error

impl From<InvalidHeaderValue> for Error[src]

impl PartialEq<Error> for Error[src]

impl StructuralPartialEq for Error[src]

Auto Trait Implementations

impl RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl UnwindSafe for Error

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.