pub enum Either8<E1, E2, E3, E4, E5, E6, E7, E8> {
    E1(E1),
    E2(E2),
    E3(E3),
    E4(E4),
    E5(E5),
    E6(E6),
    E7(E7),
    E8(E8),
}Expand description
Combines eight 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, E6: Clone, E7: Clone, E8: Clone> Clone for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
 
impl<E1: Clone, E2: Clone, E3: Clone, E4: Clone, E5: Clone, E6: Clone, E7: Clone, E8: Clone> Clone for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
Source§impl<E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug, E6: Debug, E7: Debug, E8: Debug> Debug for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
 
impl<E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug, E6: Debug, E7: Debug, E8: Debug> Debug for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
Source§impl<S, E1, E2, E3, E4, E5, E6, E7, E8> FromRequestParts<S> for Either8<E1, E2, E3, E4, E5, E6, E7, E8>where
    E1: FromRequestParts<S>,
    E2: FromRequestParts<S>,
    E3: FromRequestParts<S>,
    E4: FromRequestParts<S>,
    E5: FromRequestParts<S>,
    E6: FromRequestParts<S>,
    E7: FromRequestParts<S>,
    E8: FromRequestParts<S>,
    S: Send + Sync,
 
impl<S, E1, E2, E3, E4, E5, E6, E7, E8> FromRequestParts<S> for Either8<E1, E2, E3, E4, E5, E6, E7, E8>where
    E1: FromRequestParts<S>,
    E2: FromRequestParts<S>,
    E3: FromRequestParts<S>,
    E4: FromRequestParts<S>,
    E5: FromRequestParts<S>,
    E6: FromRequestParts<S>,
    E7: FromRequestParts<S>,
    E8: FromRequestParts<S>,
    S: Send + Sync,
Source§type Rejection = <E8 as FromRequestParts<S>>::Rejection
 
type Rejection = <E8 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, E6, E7, E8> IntoResponse for Either8<E1, E2, E3, E4, E5, E6, E7, E8>where
    E1: IntoResponse,
    E2: IntoResponse,
    E3: IntoResponse,
    E4: IntoResponse,
    E5: IntoResponse,
    E6: IntoResponse,
    E7: IntoResponse,
    E8: IntoResponse,
 
impl<E1, E2, E3, E4, E5, E6, E7, E8> IntoResponse for Either8<E1, E2, E3, E4, E5, E6, E7, E8>where
    E1: IntoResponse,
    E2: IntoResponse,
    E3: IntoResponse,
    E4: IntoResponse,
    E5: IntoResponse,
    E6: IntoResponse,
    E7: IntoResponse,
    E8: IntoResponse,
Source§fn into_response(self) -> Response
 
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl<E1, E2, E3, E4, E5, E6, E7, E8> Freeze for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
impl<E1, E2, E3, E4, E5, E6, E7, E8> RefUnwindSafe for Either8<E1, E2, E3, E4, E5, E6, E7, E8>where
    E1: RefUnwindSafe,
    E2: RefUnwindSafe,
    E3: RefUnwindSafe,
    E4: RefUnwindSafe,
    E5: RefUnwindSafe,
    E6: RefUnwindSafe,
    E7: RefUnwindSafe,
    E8: RefUnwindSafe,
impl<E1, E2, E3, E4, E5, E6, E7, E8> Send for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
impl<E1, E2, E3, E4, E5, E6, E7, E8> Sync for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
impl<E1, E2, E3, E4, E5, E6, E7, E8> Unpin for Either8<E1, E2, E3, E4, E5, E6, E7, E8>
impl<E1, E2, E3, E4, E5, E6, E7, E8> UnwindSafe for Either8<E1, E2, E3, E4, E5, E6, E7, E8>where
    E1: UnwindSafe,
    E2: UnwindSafe,
    E3: UnwindSafe,
    E4: UnwindSafe,
    E5: UnwindSafe,
    E6: UnwindSafe,
    E7: UnwindSafe,
    E8: 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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<S, T> FromRequest<S, ViaParts> for T
 
impl<S, T> FromRequest<S, ViaParts> for T
Source§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§fn from_request(
    req: Request<Body>,
    state: &S,
) -> impl Future<Output = Result<T, <T as FromRequest<S, ViaParts>>::Rejection>>
 
fn from_request( req: Request<Body>, state: &S, ) -> impl Future<Output = Result<T, <T as FromRequest<S, ViaParts>>::Rejection>>
Perform the extraction.
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