[][src]Enum apod_async_client::APODClientError

pub enum APODClientError {
    InvalidURL {
        source: ParseError,
    },
    RateLimitError,
    IOError {
        source: Box<dyn Error + Send + Sync>,
    },
    RequestStatusError {
        status: u16,
        source: Box<dyn Error + Send + Sync>,
    },
    DecodeError {
        source: Box<dyn Error + Send + Sync>,
    },
}

Client errors

Variants

InvalidURL

Service URL cannot be created

Fields of InvalidURL

source: ParseError
RateLimitError

Rate limit exceeded for this API key

IOError

IO error encountered while performing request

Fields of IOError

source: Box<dyn Error + Send + Sync>
RequestStatusError

Request failed with invalid HTTP status code

Fields of RequestStatusError

status: u16source: Box<dyn Error + Send + Sync>
DecodeError

Error while decoding response content

Fields of DecodeError

source: Box<dyn Error + Send + Sync>

Trait Implementations

impl Display for APODClientError[src]

impl Debug for APODClientError[src]

impl Error for APODClientError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]