[][src]Enum lobsters::error::Error

pub enum Error {
    Http(Error),
    InvalidStr,
    Io(Error),
    Url(ParseError),
    HomeNotFound,
    CookieStore,
    MissingHtmlElement,
    Authorisation,
}

The main error type of the library

Variants

Http(Error)

An error related to performing a HTTP request

InvalidStr

An attempt was made to convert data into a string that was not valid UTF-8

Io(Error)

An I/O error

Url(ParseError)

An attempt to parse a string that was not a valid URL

HomeNotFound

User home directory could not be determined

CookieStore

An error related to maintaining the cookie store

MissingHtmlElement

A desired HTML element was unable to be found in the markup

Authorisation

The request was not authorised or login attemp failed

Trait Implementations

impl From<Error> for Error[src]

impl From<ParseError> for Error[src]

impl From<Error> for Error[src]

impl Debug for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[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> Any for T where
    T: 'static + ?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, U> TryInto for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Erased for T