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.