Home
last modified time | relevance | path

Searched refs:NamedService (Results 1 – 15 of 15) sorted by relevance

/tonic/tonic/src/service/
H A Dlayered.rs9 use crate::server::NamedService;
18 impl<S, T: NamedService> NamedService for Layered<S, T> {
73 impl NamedService for TestService {
78 fn get_name_of_named_service<S: NamedService>(_s: &S) -> &'static str { in get_name_of_named_service()
H A Drouter.rs1 use crate::{body::Body, server::NamedService, Status};
29 + NamedService in add_service()
61 + NamedService in new()
81 + NamedService in add_service()
H A Dinterceptor.rs157 impl<S, I> crate::server::NamedService for InterceptedService<S, I>
159 S: crate::server::NamedService,
/tonic/tests/integration_tests/tests/
H A Dextensions.rs12 server::NamedService,
128 + NamedService
155 impl<S: NamedService> NamedService for InterceptedService<S> {
/tonic/tonic/src/server/
H A Dmod.rs21 pub trait NamedService { trait
/tonic/tonic-health/src/
H A Dserver.rs11 use tonic::{server::NamedService, Request, Response, Status};
53 S: NamedService, in set_serving() argument
55 let service_name = <S as NamedService>::NAME; in set_serving()
64 S: NamedService, in set_not_serving() argument
66 let service_name = <S as NamedService>::NAME; in set_not_serving()
/tonic/interop/src/
H A Dserver.rs11 use tonic::{body::Body, server::NamedService, Code, Request, Response, Status};
173 impl<S: NamedService> NamedService for EchoHeadersSvc<S> {
/tonic/tonic-health/
H A DREADME.md10 `NamedService` trait. You can use it like that:
/tonic/tonic-web/src/
H A Dservice.rs9 use tonic::{body::Body, server::NamedService};
179 impl<S: NamedService> NamedService for GrpcWebService<S> {
272 impl NamedService for Svc {
/tonic/tonic/src/transport/server/
H A Dmod.rs16 use crate::{server::NamedService, service::Routes};
404 + NamedService in add_service()
428 + NamedService in add_optional_service()
838 + NamedService in add_service()
858 + NamedService in add_optional_service()
/tonic/tonic-health/src/generated/
H A Dgrpc_health_v1.rs456 impl<T> tonic::server::NamedService for HealthServer<T> {
/tonic/tonic-reflection/src/generated/
H A Dgrpc_reflection_v1.rs458 impl<T> tonic::server::NamedService for ServerReflectionServer<T> {
H A Dgrpc_reflection_v1alpha.rs458 impl<T> tonic::server::NamedService for ServerReflectionServer<T> {
/tonic/
H A DCHANGELOG.md88 - Removed `NamedService` from the `transport` module, please import it via
89 `tonic::server::NamedService`.
163 * **tonic:** Use NamedService without transport feature ([#1273](https://github.com/hyperium/tonic/…
235 * Decouple `NamedService` from the `transport` feature ([#969](https://github.com/hyperium/tonic/is…
585 * rename ServiceName -> NamedService ([#233](https://github.com/hyperium/tonic/issues/233)) ([6ee2e…
599 * Rename `ServiceName` to `NamedService`.
/tonic/tonic-build/src/
H A Dserver.rs363 impl<T> tonic::server::NamedService for #server_service<T> { in generate_named()