Enum actix_web::middleware::ErrorHandlerResponse
source · [−]pub enum ErrorHandlerResponse<B> {
Response(ServiceResponse<EitherBody<B>>),
Future(LocalBoxFuture<'static, Result<ServiceResponse<EitherBody<B>>, Error>>),
}
Expand description
Return type for ErrorHandlers
custom handlers.
Variants
Response(ServiceResponse<EitherBody<B>>)
Immediate HTTP response.
Future(LocalBoxFuture<'static, Result<ServiceResponse<EitherBody<B>>, Error>>)
A future that resolves to an HTTP response.
Auto Trait Implementations
impl<B> !RefUnwindSafe for ErrorHandlerResponse<B>
impl<B> !Send for ErrorHandlerResponse<B>
impl<B> !Sync for ErrorHandlerResponse<B>
impl<B> Unpin for ErrorHandlerResponse<B> where
B: Unpin,
impl<B> !UnwindSafe for ErrorHandlerResponse<B>
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more