Struct actix_web::error::Error [] [src]

pub struct Error { /* fields omitted */ }

General purpose actix web error

Methods

impl Error
[src]

[src]

Returns a reference to the underlying cause of this Error.

[src]

Returns a reference to the Backtrace carried by this error, if it carries one.

Trait Implementations

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for HttpResponse
[src]

HttpResponse for Error

[src]

Performs the conversion.

impl<T: ResponseError> From<T> for Error
[src]

Error for any error that implements ResponseError

[src]

Performs the conversion.

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Error> for ClientError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error