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>where
R: Router<B>,
R::Service: Service<Request<B>, Response = Response<RespB>> + Clone,
R::Error: IntoResponse<P> + Error,
RespB: HttpBody<Data = Bytes> + Send + 'static,
RespB::Error: Into<Box<dyn StdError + Send + Sync>>,
impl<R, P, B, RespB> Service<Request<B>> for RoutingService<R, P>where R: Router<B>, R::Service: Service<Request<B>, Response = Response<RespB>> + Clone, R::Error: IntoResponse<P> + Error, RespB: HttpBody<Data = Bytes> + Send + 'static, RespB::Error: Into<Box<dyn StdError + Send + Sync>>,
§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> RefUnwindSafe for RoutingService<R, Protocol>where Protocol: RefUnwindSafe, R: RefUnwindSafe,
impl<R, Protocol> Send for RoutingService<R, Protocol>where Protocol: Send, R: Send,
impl<R, Protocol> Sync for RoutingService<R, Protocol>where Protocol: Sync, R: Sync,
impl<R, Protocol> Unpin for RoutingService<R, Protocol>where Protocol: Unpin, R: Unpin,
impl<R, Protocol> UnwindSafe for RoutingService<R, Protocol>where Protocol: UnwindSafe, R: 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> 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<F, Op, Exts, PollError> OperationServiceExt<Op, Exts, PollError> for Fwhere
Op: OperationShape,
F: OperationService<Op, Exts, PollError>,
impl<F, Op, Exts, PollError> OperationServiceExt<Op, Exts, PollError> for Fwhere Op: OperationShape, F: OperationService<Op, Exts, PollError>,
source§fn canonicalize(self) -> Normalize<Op, Self, PollError>where
Self: Sized,
fn canonicalize(self) -> Normalize<Op, Self, PollError>where Self: Sized,
Convert the
OperationService into a canonicalized [Service].source§impl<T, Request> ServiceExt<Request> for Twhere
T: Service<Request> + ?Sized,
impl<T, Request> ServiceExt<Request> for Twhere T: Service<Request> + ?Sized,
source§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.
source§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.
source§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.
source§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.source§fn call_all<S>(self, reqs: S) -> CallAll<Self, S>where
Self: Sized,
Self::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
S: Stream<Item = Request>,
fn call_all<S>(self, reqs: S) -> CallAll<Self, S>where Self: Sized, Self::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>, S: Stream<Item = Request>,
source§fn and_then<F>(self, f: F) -> AndThen<Self, F>where
Self: Sized,
F: Clone,
fn and_then<F>(self, f: F) -> AndThen<Self, F>where Self: Sized, F: Clone,
Executes a new future after this service’s future resolves. This does
not alter the behaviour of the
poll_ready method. Read moresource§fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>where
Self: Sized,
F: FnOnce(Self::Response) -> Response + Clone,
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>where Self: Sized, F: FnOnce(Self::Response) -> Response + Clone,
Maps this service’s response value to a different value. This does not
alter the behaviour of the
poll_ready method. Read moresource§fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>where
Self: Sized,
F: FnOnce(Self::Error) -> Error + Clone,
fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>where Self: Sized, F: FnOnce(Self::Error) -> Error + Clone,
Maps this service’s error value to a different value. This does not
alter the behaviour of the
poll_ready method. Read moresource§fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>where
Self: Sized,
Error: From<Self::Error>,
F: FnOnce(Result<Self::Response, Self::Error>) -> Result<Response, Error> + Clone,
fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>where Self: Sized, Error: From<Self::Error>, F: FnOnce(Result<Self::Response, Self::Error>) -> Result<Response, Error> + Clone,
Maps this service’s result type (
Result<Self::Response, Self::Error>)
to a different value, regardless of whether the future succeeds or
fails. Read moresource§fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>where
Self: Sized,
F: FnMut(NewRequest) -> Request,
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>where Self: Sized, F: FnMut(NewRequest) -> Request,
Composes a function in front of the service. Read more
source§fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>where
Self: Sized,
Error: From<Self::Error>,
F: FnOnce(Result<Self::Response, Self::Error>) -> Fut + Clone,
Fut: Future<Output = Result<Response, Error>>,
fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>where Self: Sized, Error: From<Self::Error>, F: FnOnce(Result<Self::Response, Self::Error>) -> Fut + Clone, Fut: Future<Output = Result<Response, Error>>,
Composes an asynchronous function after this service. Read more
source§fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>where
Self: Sized,
F: FnMut(Self::Future) -> Fut,
Error: From<Self::Error>,
Fut: Future<Output = Result<Response, Error>>,
fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>where Self: Sized, F: FnMut(Self::Future) -> Fut, Error: From<Self::Error>, Fut: Future<Output = Result<Response, Error>>,
Composes a function that transforms futures produced by the service. Read more