Struct catalyzer::internals::crates::axum::error_handling::HandleErrorLayer
pub struct HandleErrorLayer<F, T> { /* private fields */ }
Expand description
Layer
that applies HandleError
which is a Service
adapter
that handles errors by converting them into responses.
See module docs for more details on axum’s error handling model.
Implementations§
§impl<F, T> HandleErrorLayer<F, T>
impl<F, T> HandleErrorLayer<F, T>
pub fn new(f: F) -> HandleErrorLayer<F, T>
pub fn new(f: F) -> HandleErrorLayer<F, T>
Create a new HandleErrorLayer
.
Trait Implementations§
§impl<F, T> Clone for HandleErrorLayer<F, T>where
F: Clone,
impl<F, T> Clone for HandleErrorLayer<F, T>where
F: Clone,
§fn clone(&self) -> HandleErrorLayer<F, T>
fn clone(&self) -> HandleErrorLayer<F, 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 more§impl<F, E> Debug for HandleErrorLayer<F, E>
impl<F, E> Debug for HandleErrorLayer<F, E>
§impl<S, F, T> Layer<S> for HandleErrorLayer<F, T>where
F: Clone,
impl<S, F, T> Layer<S> for HandleErrorLayer<F, T>where
F: Clone,
§type Service = HandleError<S, F, T>
type Service = HandleError<S, F, T>
The wrapped service
§fn layer(&self, inner: S) -> <HandleErrorLayer<F, T> as Layer<S>>::Service
fn layer(&self, inner: S) -> <HandleErrorLayer<F, T> as Layer<S>>::Service
Wrap the given service with the middleware, returning a new service
that has been decorated with the middleware.
Auto Trait Implementations§
impl<F, T> Freeze for HandleErrorLayer<F, T>where
F: Freeze,
impl<F, T> RefUnwindSafe for HandleErrorLayer<F, T>where
F: RefUnwindSafe,
impl<F, T> Send for HandleErrorLayer<F, T>where
F: Send,
impl<F, T> Sync for HandleErrorLayer<F, T>where
F: Sync,
impl<F, T> Unpin for HandleErrorLayer<F, T>where
F: Unpin,
impl<F, T> UnwindSafe for HandleErrorLayer<F, T>where
F: 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