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