Enum axum_extra::either::Either5
source · pub enum Either5<E1, E2, E3, E4, E5> {
E1(E1),
E2(E2),
E3(E3),
E4(E4),
E5(E5),
}
Expand description
Combines five extractors or responses into a single type.
See the module docs for examples.
Variants§
Trait Implementations§
source§impl<E1: Clone, E2: Clone, E3: Clone, E4: Clone, E5: Clone> Clone for Either5<E1, E2, E3, E4, E5>
impl<E1: Clone, E2: Clone, E3: Clone, E4: Clone, E5: Clone> Clone for Either5<E1, E2, E3, E4, E5>
source§impl<E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug> Debug for Either5<E1, E2, E3, E4, E5>
impl<E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug> Debug for Either5<E1, E2, E3, E4, E5>
source§impl<S, E1, E2, E3, E4, E5> FromRequestParts<S> for Either5<E1, E2, E3, E4, E5>where
E1: FromRequestParts<S>,
E2: FromRequestParts<S>,
E3: FromRequestParts<S>,
E4: FromRequestParts<S>,
E5: FromRequestParts<S>,
S: Send + Sync,
impl<S, E1, E2, E3, E4, E5> FromRequestParts<S> for Either5<E1, E2, E3, E4, E5>where
E1: FromRequestParts<S>,
E2: FromRequestParts<S>,
E3: FromRequestParts<S>,
E4: FromRequestParts<S>,
E5: FromRequestParts<S>,
S: Send + Sync,
§type Rejection = <E5 as FromRequestParts<S>>::Rejection
type Rejection = <E5 as FromRequestParts<S>>::Rejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
source§impl<E1, E2, E3, E4, E5> IntoResponse for Either5<E1, E2, E3, E4, E5>
impl<E1, E2, E3, E4, E5> IntoResponse for Either5<E1, E2, E3, E4, E5>
source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl<E1, E2, E3, E4, E5> Freeze for Either5<E1, E2, E3, E4, E5>
impl<E1, E2, E3, E4, E5> RefUnwindSafe for Either5<E1, E2, E3, E4, E5>where
E1: RefUnwindSafe,
E2: RefUnwindSafe,
E3: RefUnwindSafe,
E4: RefUnwindSafe,
E5: RefUnwindSafe,
impl<E1, E2, E3, E4, E5> Send for Either5<E1, E2, E3, E4, E5>
impl<E1, E2, E3, E4, E5> Sync for Either5<E1, E2, E3, E4, E5>
impl<E1, E2, E3, E4, E5> Unpin for Either5<E1, E2, E3, E4, E5>
impl<E1, E2, E3, E4, E5> UnwindSafe for Either5<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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<S, T> FromRequest<S, ViaParts> for T
impl<S, T> FromRequest<S, ViaParts> for T
§type Rejection = <T as FromRequestParts<S>>::Rejection
type Rejection = <T as FromRequestParts<S>>::Rejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
source§impl<T, S> Handler<IntoResponseHandler, S> for T
impl<T, S> Handler<IntoResponseHandler, S> for T
source§fn call(
self,
_req: Request<Body>,
_state: S,
) -> <T as Handler<IntoResponseHandler, S>>::Future
fn call( self, _req: Request<Body>, _state: S, ) -> <T as Handler<IntoResponseHandler, S>>::Future
Call the handler with the given request.
source§fn layer<L>(self, layer: L) -> Layered<L, Self, T, S>where
L: Layer<HandlerService<Self, T, S>> + Clone,
<L as Layer<HandlerService<Self, T, S>>>::Service: Service<Request<Body>>,
fn layer<L>(self, layer: L) -> Layered<L, Self, T, S>where
L: Layer<HandlerService<Self, T, S>> + Clone,
<L as Layer<HandlerService<Self, T, S>>>::Service: Service<Request<Body>>,
Apply a
tower::Layer
to the handler. Read moresource§fn with_state(self, state: S) -> HandlerService<Self, T, S>
fn with_state(self, state: S) -> HandlerService<Self, T, S>
Convert the handler into a
Service
by providing the statesource§impl<H, T> HandlerWithoutStateExt<T> for H
impl<H, T> HandlerWithoutStateExt<T> for H
source§fn into_service(self) -> HandlerService<H, T, ()>
fn into_service(self) -> HandlerService<H, T, ()>
Convert the handler into a
Service
and no state.source§fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, ()>>
fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, ()>>
Convert the handler into a
MakeService
and no state. Read moresource§fn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, ()>, C>
fn into_make_service_with_connect_info<C>( self, ) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, ()>, C>
Convert the handler into a
MakeService
which stores information
about the incoming connection and has no state. Read more