[][src]Struct actix_web::Error

pub struct Error { /* fields omitted */ }

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.

Methods

impl Error[src]

pub fn as_response_error(&self) -> &dyn ResponseError[src]

Returns the reference to the underlying ResponseError.

pub fn response_with_message(self) -> Response<Body>[src]

Converts error to a response instance and set error message as response body

Trait Implementations

impl<T> From<T> for Error where
    T: 'static + ResponseError
[src]

Error for any error that implements ResponseError

impl From<Response<Body>> for Error[src]

Convert Response to a Error

impl From<Error> for SendRequestError[src]

impl From<Error> for Response<Body>[src]

Convert Error to a Response instance

impl Debug for Error[src]

impl Display 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> ToString for T where
    T: Display + ?Sized
[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> Erased for T