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§
Source§impl<F, T> HandleErrorLayer<F, T>
 
impl<F, T> HandleErrorLayer<F, T>
Trait Implementations§
Source§impl<F, T> Clone for HandleErrorLayer<F, T>where
    F: Clone,
 
impl<F, T> Clone for HandleErrorLayer<F, T>where
    F: Clone,
Source§impl<F, E> Debug for HandleErrorLayer<F, E>
 
impl<F, E> Debug for HandleErrorLayer<F, E>
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