Struct tonic::transport::server::Router[][src]

pub struct Router<A, B, L = Identity> { /* fields omitted */ }
This is supported on crate feature transport only.
Expand description

A stack based Service router.

Implementations

Add a new service to this router.

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.

Consume this Server creating a future that will execute the server on tokio’s default executor.

Consume this Server creating a future that will execute the server on tokio’s default executor. And shutdown when the provided signal is received.

Consume this Server creating a future that will execute the server on the provided incoming stream of AsyncRead + AsyncWrite.

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.

Create a tower service out of a router.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more