Struct aws_smithy_http_server::routing::RoutingService
source · pub struct RoutingService<R, Protocol> { /* private fields */ }
Expand description
A [Service
] using the Router
R
to redirect messages to specific routes.
The Protocol
parameter is used to determine the serialization of errors.
Implementations§
source§impl<R, P> RoutingService<R, P>
impl<R, P> RoutingService<R, P>
sourcepub fn new(router: R) -> Self
pub fn new(router: R) -> Self
Creates a RoutingService
from a Router
.
sourcepub fn map<RNew, F>(self, f: F) -> RoutingService<RNew, P>where
F: FnOnce(R) -> RNew,
pub fn map<RNew, F>(self, f: F) -> RoutingService<RNew, P>where
F: FnOnce(R) -> RNew,
Maps a Router
using a closure.
Trait Implementations§
source§impl<R, P> Clone for RoutingService<R, P>where
R: Clone,
impl<R, P> Clone for RoutingService<R, P>where
R: Clone,
source§impl<R, P> Debug for RoutingService<R, P>where
R: Debug,
impl<R, P> Debug for RoutingService<R, P>where
R: Debug,
source§impl<R, P, B, RespB> Service<Request<B>> for RoutingService<R, P>
impl<R, P, B, RespB> Service<Request<B>> for RoutingService<R, P>
§type Response = Response<UnsyncBoxBody<Bytes, Error>>
type Response = Response<UnsyncBoxBody<Bytes, Error>>
Responses given by the service.
§type Error = <<R as Router<B>>::Service as Service<Request<B>>>::Error
type Error = <<R as Router<B>>::Service as Service<Request<B>>>::Error
Errors produced by the service.
§type Future = RoutingFuture<<R as Router<B>>::Service, B>
type Future = RoutingFuture<<R as Router<B>>::Service, B>
The future response value.
Auto Trait Implementations§
impl<R, Protocol> Freeze for RoutingService<R, Protocol>where
R: Freeze,
impl<R, Protocol> RefUnwindSafe for RoutingService<R, Protocol>where
R: RefUnwindSafe,
Protocol: RefUnwindSafe,
impl<R, Protocol> Send for RoutingService<R, Protocol>
impl<R, Protocol> Sync for RoutingService<R, Protocol>
impl<R, Protocol> Unpin for RoutingService<R, Protocol>
impl<R, Protocol> UnwindSafe for RoutingService<R, Protocol>where
R: UnwindSafe,
Protocol: 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§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
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 moreCreates a shared type from an unshared type.
source§impl<F, Op, Exts> OperationServiceExt<Op, Exts> for Fwhere
Op: OperationShape,
F: OperationService<Op, Exts>,
impl<F, Op, Exts> OperationServiceExt<Op, Exts> for Fwhere
Op: OperationShape,
F: OperationService<Op, Exts>,
§impl<T, Request> ServiceExt<Request> for Twhere
T: Service<Request> + ?Sized,
impl<T, Request> ServiceExt<Request> for Twhere
T: Service<Request> + ?Sized,
§fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
Yields a mutable reference to the service when it is ready to accept a request.
§fn ready_and(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
fn ready_and(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
👎Deprecated since 0.4.6: please use the
ServiceExt::ready
method insteadYields a mutable reference to the service when it is ready to accept a request.
§fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
Yields the service when it is ready to accept a request.
§fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
Consume this
Service
, calling with the providing request once it is ready.§fn and_then<F>(self, f: F) -> AndThen<Self, F>
fn and_then<F>(self, f: F) -> AndThen<Self, F>
Executes a new future after this service’s future resolves. This does
not alter the behaviour of the
poll_ready
method. Read more§fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
Maps this service’s response value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read more§fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
Maps this service’s error value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read more§fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
Maps this service’s result type (
Result<Self::Response, Self::Error>
)
to a different value, regardless of whether the future succeeds or
fails. Read more§fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
Composes a function in front of the service. Read more
§fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
Composes an asynchronous function after this service. Read more
§fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
Composes a function that transforms futures produced by the service. Read more