pub trait ResponseForPanic: Clone {
    type ResponseBody;
    fn response_for_panic(
        &mut self,
        err: Box<dyn Any + Send + 'static>
    ) -> Response<Self::ResponseBody>; }
This is supported on crate feature catch-panic only.
Expand description

Trait for creating responses from panics.

Associated Types

The body type used for responses to panics.

Required methods

Create a response from the panic error.

Implementors