ExtractErrors6

Enum ExtractErrors6 

Source
pub enum ExtractErrors6<E1, E2, E3, E4, E5, E6> {
    E1(E1),
    E2(E2),
    E3(E3),
    E4(E4),
    E5(E5),
    E6(E6),
}
Expand description

Error type for handlers with 6 extractors.

Variants§

§

E1(E1)

§

E2(E2)

§

E3(E3)

§

E4(E4)

§

E5(E5)

§

E6(E6)

Trait Implementations§

Source§

impl<E1: IntoResponse, E2: IntoResponse, E3: IntoResponse, E4: IntoResponse, E5: IntoResponse, E6: IntoResponse> IntoResponse for ExtractErrors6<E1, E2, E3, E4, E5, E6>

Source§

fn into_response(self) -> Response

Converts this value into a Response.

Auto Trait Implementations§

§

impl<E1, E2, E3, E4, E5, E6> Freeze for ExtractErrors6<E1, E2, E3, E4, E5, E6>
where E1: Freeze, E2: Freeze, E3: Freeze, E4: Freeze, E5: Freeze, E6: Freeze,

§

impl<E1, E2, E3, E4, E5, E6> RefUnwindSafe for ExtractErrors6<E1, E2, E3, E4, E5, E6>

§

impl<E1, E2, E3, E4, E5, E6> Send for ExtractErrors6<E1, E2, E3, E4, E5, E6>
where E1: Send, E2: Send, E3: Send, E4: Send, E5: Send, E6: Send,

§

impl<E1, E2, E3, E4, E5, E6> Sync for ExtractErrors6<E1, E2, E3, E4, E5, E6>
where E1: Sync, E2: Sync, E3: Sync, E4: Sync, E5: Sync, E6: Sync,

§

impl<E1, E2, E3, E4, E5, E6> Unpin for ExtractErrors6<E1, E2, E3, E4, E5, E6>
where E1: Unpin, E2: Unpin, E3: Unpin, E4: Unpin, E5: Unpin, E6: Unpin,

§

impl<E1, E2, E3, E4, E5, E6> UnwindSafe for ExtractErrors6<E1, E2, E3, E4, E5, E6>
where E1: UnwindSafe, E2: UnwindSafe, E3: UnwindSafe, E4: UnwindSafe, E5: UnwindSafe, E6: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.