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> !Freeze for ErrorHandlerResponse<B>
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§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more