Trait actix_web::error::ResponseError
[−]
[src]
pub trait ResponseError: Fail { fn error_response(&self) -> HttpResponse { ... } }
Error that can be converted to HttpResponse
Provided Methods
fn error_response(&self) -> HttpResponse
Create response for error
Internal server error is generated by default.
Implementations on Foreign Types
impl<T> ResponseError for Compat<T> where
T: Display + Debug + Sync + Send + 'static, [src]
T: Display + Debug + Sync + Send + 'static,
Compatibility for failure::Error
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for JsonError[src]
InternalServerError for JsonError
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for DeError[src]
Return BAD_REQUEST for de::value::Error
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for Utf8Error[src]
Return BAD_REQUEST for Utf8Error
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for HttpError[src]
Return InternalServerError for HttpError,
Response generation can return HttpError, so it is internal error
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for Error[src]
Return InternalServerError for io::Error
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for InvalidHeaderValue[src]
BadRequest for InvalidHeaderValue
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for InvalidHeaderValueBytes[src]
BadRequest for InvalidHeaderValue
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for Canceled[src]
InternalServerError for futures::Canceled
fn error_response(&self) -> HttpResponse[src]
impl ResponseError for MailboxError[src]
InternalServerError for actix::MailboxError
fn error_response(&self) -> HttpResponse[src]
Implementors
impl ResponseError for SendRequestErrorimpl ResponseError for UrlParseErrorimpl ResponseError for actix_web::error::ParseErrorimpl ResponseError for PayloadErrorimpl ResponseError for actix_web::error::CookieParseErrorimpl ResponseError for HttpRangeErrorimpl ResponseError for MultipartErrorimpl ResponseError for ExpectErrorimpl ResponseError for ContentTypeErrorimpl ResponseError for UrlencodedErrorimpl ResponseError for JsonPayloadErrorimpl ResponseError for UriSegmentErrorimpl ResponseError for UrlGenerationErrorimpl<T> ResponseError for InternalError<T> where
T: Send + Sync + Debug + Display + 'static,impl ResponseError for CorsErrorimpl ResponseError for CsrfErrorimpl ResponseError for CookieSessionErrorimpl ResponseError for ProtocolErrorimpl ResponseError for HandshakeError