Enum rustful::response::Error [] [src]

pub enum Error {
    Filter(String),
    Io(Error),
}

The result of a response action.

Variants

A response filter failed.

There was an IO error.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl ResponseError for Error
[src]

Handle the error to "make it go away".

impl Error for Error
[src]

A short description of the error. Read more

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error