Enum tweetust::TwitterError [] [src]

pub enum TwitterError {
    ErrorResponse(ErrorResponse),
    Url(ParseError),
    InvalidRequest,
    Io(Error),
    Http(Error),
    ParseResponse(Option<Error>, TwitterResponse<()>),
}

Variants

Trait Implementations

impl Debug for TwitterError
[src]

Formats the value using the given formatter.

impl Error for TwitterError
[src]

A short description of the error. Read more

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

impl Display for TwitterError
[src]

Formats the value using the given formatter.

impl From<ErrorResponse> for TwitterError
[src]

Performs the conversion.

impl From<Error> for TwitterError
[src]

Performs the conversion.

impl From<ParseError> for TwitterError
[src]

Performs the conversion.

impl From<Error> for TwitterError
[src]

Performs the conversion.