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