Enum discogs::query::query_error::QueryError [] [src]

pub enum QueryError {
    AuthenticationMissingError {
        reason: String,
    },
    JsonDecodeError {
        serde_err: Option<Error>,
    },
    HyperSendError {
        hyper_err: Error,
    },
    HyperStatusError {
        response: Response,
    },
    EmptyResponseError,
    TextReadError {
        error: Error,
    },
}

QueryError is a structure of all the errors that are possible during a query

Variants

Fields of AuthenticationMissingError

Fields of JsonDecodeError

Fields of HyperSendError

Fields of HyperStatusError

Fields of TextReadError

Trait Implementations

impl Debug for QueryError
[src]

Formats the value using the given formatter.