Struct actix_web_lab::middleware::CatchPanic
source · #[non_exhaustive]pub struct CatchPanic;
Expand description
A middleware to catch panics in wrapped handlers and middleware, returning empty 500 responses.
This middleware should never be used as replacement for proper error handling. See this thread for historical discussion on why Actix Web does not do this by default.
It is recommended that this middleware be registered last. That is, wrap
ed after everything
else except Logger
.
§Examples
use actix_web_lab::middleware::CatchPanic;
App::new().wrap(CatchPanic::default())
use actix_web::middleware::{Logger, NormalizePath};
use actix_web_lab::middleware::CatchPanic;
// recommended wrap order
App::new()
.wrap(NormalizePath::default())
.wrap(CatchPanic::default()) // <- after everything except logger
.wrap(Logger::default())
Trait Implementations§
source§impl Clone for CatchPanic
impl Clone for CatchPanic
source§fn clone(&self) -> CatchPanic
fn clone(&self) -> CatchPanic
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 Debug for CatchPanic
impl Debug for CatchPanic
source§impl Default for CatchPanic
impl Default for CatchPanic
source§fn default() -> CatchPanic
fn default() -> CatchPanic
Returns the “default value” for a type. Read more
source§impl<S, B> Transform<S, ServiceRequest> for CatchPanic
impl<S, B> Transform<S, ServiceRequest> for CatchPanic
§type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses produced by the service.
§type Future = Ready<Result<<CatchPanic as Transform<S, ServiceRequest>>::Transform, <CatchPanic as Transform<S, ServiceRequest>>::InitError>>
type Future = Ready<Result<<CatchPanic as Transform<S, ServiceRequest>>::Transform, <CatchPanic as Transform<S, ServiceRequest>>::InitError>>
The future response value.
source§fn new_transform(&self, service: S) -> Self::Future
fn new_transform(&self, service: S) -> Self::Future
Creates and returns a new Transform component, asynchronously
Auto Trait Implementations§
impl Freeze for CatchPanic
impl RefUnwindSafe for CatchPanic
impl Send for CatchPanic
impl Sync for CatchPanic
impl Unpin for CatchPanic
impl UnwindSafe for CatchPanic
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more