Struct axum::error_handling::HandleErrorLayer
source · [−]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
sourceimpl<F, T> HandleErrorLayer<F, T>
impl<F, T> HandleErrorLayer<F, T>
Trait Implementations
sourceimpl<F, T> Clone for HandleErrorLayer<F, T>where
F: Clone,
impl<F, T> Clone for HandleErrorLayer<F, T>where
F: Clone,
sourceimpl<F, E> Debug for HandleErrorLayer<F, E>
impl<F, E> Debug for HandleErrorLayer<F, E>
sourceimpl<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,
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more