pub struct Router<L = Identity> { /* private fields */ }
Expand description
A stack based Service
router.
Implementations
sourceimpl<L> Router<L>
impl<L> Router<L>
sourcepub fn add_service<S>(self, svc: S) -> Router<L>where
S: 'static + Service<Request<Body>, Response = Response<UnsyncBoxBody<Bytes, Status>>, Error = Infallible> + NamedService + Clone + Send,
<S as Service<Request<Body>>>::Future: 'static + Send,
pub fn add_service<S>(self, svc: S) -> Router<L>where
S: 'static + Service<Request<Body>, Response = Response<UnsyncBoxBody<Bytes, Status>>, Error = Infallible> + NamedService + Clone + Send,
<S as Service<Request<Body>>>::Future: 'static + Send,
Add a new service to this router.
sourcepub fn add_optional_service<S>(self, svc: Option<S>) -> Router<L>where
S: 'static + Service<Request<Body>, Response = Response<UnsyncBoxBody<Bytes, Status>>, Error = Infallible> + NamedService + Clone + Send,
<S as Service<Request<Body>>>::Future: 'static + Send,
pub fn add_optional_service<S>(self, svc: Option<S>) -> Router<L>where
S: 'static + Service<Request<Body>, Response = Response<UnsyncBoxBody<Bytes, Status>>, Error = Infallible> + NamedService + Clone + Send,
<S as Service<Request<Body>>>::Future: 'static + Send,
Add a new optional service to this router.
Note
Even when the argument given is None
this will capture all requests to this service name.
As a result, one cannot use this to toggle between two identically named implementations.
sourcepub async fn serve<ResBody>(
self,
addr: SocketAddr
) -> impl Future<Output = Result<(), Error>>where
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
pub async fn serve<ResBody>(
self,
addr: SocketAddr
) -> impl Future<Output = Result<(), Error>>where
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
sourcepub async fn serve_with_shutdown<F, ResBody>(
self,
addr: SocketAddr,
signal: F
) -> impl Future<Output = Result<(), Error>>where
F: Future<Output = ()>,
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
pub async fn serve_with_shutdown<F, ResBody>(
self,
addr: SocketAddr,
signal: F
) -> impl Future<Output = Result<(), Error>>where
F: Future<Output = ()>,
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
sourcepub async fn serve_with_incoming<I, IO, IE, ResBody>(
self,
incoming: I
) -> impl Future<Output = Result<(), Error>>where
I: Stream<Item = Result<IO, IE>>,
IO: 'static + AsyncRead + AsyncWrite + Connected + Unpin + Send,
<IO as Connected>::ConnectInfo: 'static + Clone + Send + Sync,
IE: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
pub async fn serve_with_incoming<I, IO, IE, ResBody>(
self,
incoming: I
) -> impl Future<Output = Result<(), Error>>where
I: Stream<Item = Result<IO, IE>>,
IO: 'static + AsyncRead + AsyncWrite + Connected + Unpin + Send,
<IO as Connected>::ConnectInfo: 'static + Clone + Send + Sync,
IE: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
Consume this Server
creating a future that will execute the server on
the provided incoming stream of AsyncRead + AsyncWrite
.
sourcepub async fn serve_with_incoming_shutdown<I, IO, IE, F, ResBody>(
self,
incoming: I,
signal: F
) -> impl Future<Output = Result<(), Error>>where
I: Stream<Item = Result<IO, IE>>,
IO: 'static + AsyncRead + AsyncWrite + Connected + Unpin + Send,
<IO as Connected>::ConnectInfo: 'static + Clone + Send + Sync,
IE: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
F: Future<Output = ()>,
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
pub async fn serve_with_incoming_shutdown<I, IO, IE, F, ResBody>(
self,
incoming: I,
signal: F
) -> impl Future<Output = Result<(), Error>>where
I: Stream<Item = Result<IO, IE>>,
IO: 'static + AsyncRead + AsyncWrite + Connected + Unpin + Send,
<IO as Connected>::ConnectInfo: 'static + Clone + Send + Sync,
IE: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
F: Future<Output = ()>,
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
Consume this Server
creating a future that will execute the server on
the provided incoming stream of AsyncRead + AsyncWrite
. Similar to
serve_with_shutdown
this method will also take a signal future to
gracefully shutdown the server.
sourcepub fn into_service<ResBody>(self) -> <L as Layer<Routes>>::Servicewhere
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
pub fn into_service<ResBody>(self) -> <L as Layer<Routes>>::Servicewhere
L: Layer<Routes>,
<L as Layer<Routes>>::Service: 'static + Service<Request<Body>, Response = Response<ResBody>> + Clone + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Future: 'static + Send,
<<L as Layer<Routes>>::Service as Service<Request<Body>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
ResBody: 'static + Body<Data = Bytes> + Send,
<ResBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
Create a tower service out of a router.
Trait Implementations
Auto Trait Implementations
impl<L = Identity> !RefUnwindSafe for Router<L>
impl<L> Send for Router<L>where
L: Send,
impl<L = Identity> !Sync for Router<L>
impl<L> Unpin for Router<L>where
L: Unpin,
impl<L = Identity> !UnwindSafe for Router<L>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request