[][src]Enum brawlhalla::APIError

pub enum APIError {
    ReqwestError(Error),
    CallingError(CallingError),
}

This enum represents any error that could occur during an API call. It can either be a ReqwestError, which occurs when there is a problem with the network or the API, or a CallingError, which represents the JSON error response that gets sent by the API server on a false API call. Calling errors are mostly caused by the rate limit or invalid API keys.

Variants

ReqwestError(Error)
CallingError(CallingError)

Trait Implementations

impl Debug for APIError[src]

impl From<Error> for APIError[src]

Auto Trait Implementations

impl !RefUnwindSafe for APIError

impl Send for APIError

impl Sync for APIError

impl Unpin for APIError

impl !UnwindSafe for APIError

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, 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.