pub struct CatchPanic<S, T> { /* private fields */ }
Expand description
Middleware that catches panics and converts them into 500 Internal Server
responses.
See the module docs for an example.
Implementations§
Source§impl<S> CatchPanic<S, DefaultResponseForPanic>
impl<S> CatchPanic<S, DefaultResponseForPanic>
Sourcepub fn new(inner: S) -> CatchPanic<S, DefaultResponseForPanic>
pub fn new(inner: S) -> CatchPanic<S, DefaultResponseForPanic>
Create a new CatchPanic
with the default panic handler.
Source§impl<S, T> CatchPanic<S, T>
impl<S, T> CatchPanic<S, T>
Sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Consumes self
, returning the underlying service.
Sourcepub fn custom(inner: S, panic_handler: T) -> CatchPanic<S, T>where
T: ResponseForPanic,
pub fn custom(inner: S, panic_handler: T) -> CatchPanic<S, T>where
T: ResponseForPanic,
Create a new CatchPanic
with a custom panic handler.
Trait Implementations§
Source§impl<S, T> Clone for CatchPanic<S, T>
impl<S, T> Clone for CatchPanic<S, T>
Source§fn clone(&self) -> CatchPanic<S, T>
fn clone(&self) -> CatchPanic<S, T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<S, T> Debug for CatchPanic<S, T>
impl<S, T> Debug for CatchPanic<S, T>
Source§impl<S, T, ReqBody, ResBody> Service<Request<ReqBody>> for CatchPanic<S, T>where
S: Service<Request<ReqBody>, Response = Response<ResBody>>,
ResBody: Body<Data = Bytes> + Send + 'static,
<ResBody as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
T: ResponseForPanic + Clone,
<T as ResponseForPanic>::ResponseBody: Body<Data = Bytes> + Send + 'static,
<<T as ResponseForPanic>::ResponseBody as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
impl<S, T, ReqBody, ResBody> Service<Request<ReqBody>> for CatchPanic<S, T>where
S: Service<Request<ReqBody>, Response = Response<ResBody>>,
ResBody: Body<Data = Bytes> + Send + 'static,
<ResBody as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
T: ResponseForPanic + Clone,
<T as ResponseForPanic>::ResponseBody: Body<Data = Bytes> + Send + 'static,
<<T as ResponseForPanic>::ResponseBody as Body>::Error: Into<Box<dyn Error + Send + Sync>>,
Source§type Response = Response<UnsyncBoxBody<Bytes, Box<dyn Error + Send + Sync>>>
type Response = Response<UnsyncBoxBody<Bytes, Box<dyn Error + Send + Sync>>>
Responses given by the service.
Source§type Future = ResponseFuture<<S as Service<Request<ReqBody>>>::Future, T>
type Future = ResponseFuture<<S as Service<Request<ReqBody>>>::Future, T>
The future response value.
impl<S, T> Copy for CatchPanic<S, T>
Auto Trait Implementations§
impl<S, T> Freeze for CatchPanic<S, T>
impl<S, T> RefUnwindSafe for CatchPanic<S, T>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<S, T> Send for CatchPanic<S, T>
impl<S, T> Sync for CatchPanic<S, T>
impl<S, T> Unpin for CatchPanic<S, T>
impl<S, T> UnwindSafe for CatchPanic<S, T>where
S: UnwindSafe,
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<S, R> ServiceExt<R> for Swhere
S: Service<R>,
impl<S, R> ServiceExt<R> for Swhere
S: Service<R>,
Source§fn into_make_service(self) -> IntoMakeService<S>
fn into_make_service(self) -> IntoMakeService<S>
Convert this service into a
MakeService
, that is a Service
whose
response is another service. Read moreSource§fn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<S, C>
fn into_make_service_with_connect_info<C>( self, ) -> IntoMakeServiceWithConnectInfo<S, C>
Convert this service into a
MakeService
, that will store C
’s
associated ConnectInfo
in a request extension such that ConnectInfo
can extract it. Read moreSource§fn handle_error<F, T>(self, f: F) -> HandleError<Self, F, T>
fn handle_error<F, T>(self, f: F) -> HandleError<Self, F, T>
Convert this service into a
HandleError
, that will handle errors
by converting them into responses. Read moreSource§impl<T, Request> ServiceExt<Request> for T
impl<T, Request> ServiceExt<Request> for T
Source§fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
Yields a mutable reference to the service when it is ready to accept a request.
Source§fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
Yields the service when it is ready to accept a request.
Source§fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
Consume this
Service
, calling it with the provided request once it is ready.Source§fn and_then<F>(self, f: F) -> AndThen<Self, F>
fn and_then<F>(self, f: F) -> AndThen<Self, F>
Executes a new future after this service’s future resolves. This does
not alter the behaviour of the
poll_ready
method. Read moreSource§fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
Maps this service’s response value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read moreSource§fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
Maps this service’s error value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read moreSource§fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
Maps this service’s result type (
Result<Self::Response, Self::Error>
)
to a different value, regardless of whether the future succeeds or
fails. Read moreSource§fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
Composes a function in front of the service. Read more
Source§fn filter_async<F, NewRequest>(self, filter: F) -> AsyncFilter<Self, F>where
Self: Sized,
F: AsyncPredicate<NewRequest>,
fn filter_async<F, NewRequest>(self, filter: F) -> AsyncFilter<Self, F>where
Self: Sized,
F: AsyncPredicate<NewRequest>,
Composes this service with an
AsyncFilter
that conditionally accepts or
rejects requests based on an [async predicate]. Read moreSource§fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
Composes an asynchronous function after this service. Read more
Source§fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
Composes a function that transforms futures produced by the service. Read more