[][src]Enum lynx::HttpError

pub enum HttpError {
    Io(Error),
    Http(Error),
    Tls(Error),
    InvalidUrl(&'static str),
    InvalidResponse(&'static str),
    DecodingError(&'static str),
    Json(Error),
}

Common errors that can occur during HTTP requests.

Variants

Io(Error)

IO Error

Http(Error)

Error generated by the http crate.

Tls(Error)

TLS error encountered while connecting to an https server.

InvalidUrl(&'static str)

Invalid URL ecountered while processing the request or response.

InvalidResponse(&'static str)

Server sent an invalid response.

DecodingError(&'static str)

Decoding error happened while trying to decode text.

Json(Error)

JSON decoding/encoding error.

Trait Implementations

impl From<Error> for HttpError[src]

impl From<Error> for HttpError[src]

impl From<Error> for HttpError[src]

impl From<Error> for HttpError[src]

impl Display for HttpError[src]

impl Debug for HttpError[src]

impl Error for HttpError[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

Auto Trait Implementations

impl Send for HttpError

impl Sync for HttpError

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]