pub struct Layered<L, H, T, S> { /* private fields */ }
Expand description
A Service
created from a Handler
by applying a Tower middleware.
Created with Handler::layer
. See that method for more details.
Trait Implementations§
Source§impl<H, S, T, L> Handler<T, S> for Layered<L, H, T, S>where
L: Layer<HandlerService<H, T, S>> + Clone + Send + Sync + 'static,
H: Handler<T, S>,
<L as Layer<HandlerService<H, T, S>>>::Service: Service<Request<Body>, Error = Infallible> + Clone + Send + 'static,
<<L as Layer<HandlerService<H, T, S>>>::Service as Service<Request<Body>>>::Response: IntoResponse,
<<L as Layer<HandlerService<H, T, S>>>::Service as Service<Request<Body>>>::Future: Send,
T: 'static,
S: 'static,
impl<H, S, T, L> Handler<T, S> for Layered<L, H, T, S>where
L: Layer<HandlerService<H, T, S>> + Clone + Send + Sync + 'static,
H: Handler<T, S>,
<L as Layer<HandlerService<H, T, S>>>::Service: Service<Request<Body>, Error = Infallible> + Clone + Send + 'static,
<<L as Layer<HandlerService<H, T, S>>>::Service as Service<Request<Body>>>::Response: IntoResponse,
<<L as Layer<HandlerService<H, T, S>>>::Service as Service<Request<Body>>>::Future: Send,
T: 'static,
S: 'static,
Source§type Future = LayeredFuture<<L as Layer<HandlerService<H, T, S>>>::Service>
type Future = LayeredFuture<<L as Layer<HandlerService<H, T, S>>>::Service>
The type of future calling this handler returns.
Source§fn call(
self,
req: Request<Body>,
state: S,
) -> <Layered<L, H, T, S> as Handler<T, S>>::Future
fn call( self, req: Request<Body>, state: S, ) -> <Layered<L, H, T, S> as Handler<T, 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 stateAuto Trait Implementations§
impl<L, H, T, S> Freeze for Layered<L, H, T, S>
impl<L, H, T, S> RefUnwindSafe for Layered<L, H, T, S>where
L: RefUnwindSafe,
H: RefUnwindSafe,
impl<L, H, T, S> Send for Layered<L, H, T, S>
impl<L, H, T, S> Sync for Layered<L, H, T, S>
impl<L, H, T, S> Unpin for Layered<L, H, T, S>
impl<L, H, T, S> UnwindSafe for Layered<L, H, T, S>where
L: UnwindSafe,
H: 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<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 moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more