Struct actix_web::error::Error

source ·
pub struct Error { /* private fields */ }
Expand description

General purpose actix web error.

An actix web error is used to carry errors from failure or std::error through actix in a convenient way. It can be created through converting errors with into().

Whenever it is created from an external object a response error is created for it that can be used to create an http response from it this means that if you have access to an actix Error you can always get a ResponseError reference from it.

Implementations

👎Deprecated since 0.6.0: please use Error::as_response_error() instead

Deprecated way to reference the underlying response error.

Returns a reference to the underlying cause of this Error as Fail

Returns the reference to the underlying ResponseError.

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

This uses the same Backtrace type that failure uses.

Attempts to downcast this Error to a particular Fail type by reference.

If the underlying error is not of type T, this will return None.

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Convert Error to a HttpResponse instance

Converts to this type from the input type.

Error for any error that implements ResponseError

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.