pub enum ExtractErrors2<E1, E2> {
E1(E1),
E2(E2),
}Expand description
Error type for handlers with 2 extractors.
Variants§
Trait Implementations§
Source§impl<E1: IntoResponse, E2: IntoResponse> IntoResponse for ExtractErrors2<E1, E2>
impl<E1: IntoResponse, E2: IntoResponse> IntoResponse for ExtractErrors2<E1, E2>
Source§fn into_response(self) -> Response
fn into_response(self) -> Response
Converts this value into a Response.
Auto Trait Implementations§
impl<E1, E2> Freeze for ExtractErrors2<E1, E2>
impl<E1, E2> RefUnwindSafe for ExtractErrors2<E1, E2>where
E1: RefUnwindSafe,
E2: RefUnwindSafe,
impl<E1, E2> Send for ExtractErrors2<E1, E2>
impl<E1, E2> Sync for ExtractErrors2<E1, E2>
impl<E1, E2> Unpin for ExtractErrors2<E1, E2>
impl<E1, E2> UnwindSafe for ExtractErrors2<E1, E2>where
E1: UnwindSafe,
E2: 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