| /tonic/examples/src/cancellation/ |
| H A D | server.rs | 7 use hello_world::{HelloReply, HelloRequest}; 25 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 33 let reply = hello_world::HelloReply { in say_hello() 52 ) -> Result<Response<HelloReply>, Status> in with_cancellation_handler() argument 54 FRequest: Future<Output = Result<Response<HelloReply>, Status>> + Send + 'static, in with_cancellation_handler() 55 FCancellation: Future<Output = Result<Response<HelloReply>, Status>> + Send + 'static, in with_cancellation_handler()
|
| /tonic/examples/src/codec_buffers/ |
| H A D | server.rs | 17 HelloReply, HelloRequest, 28 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 31 let reply = HelloReply { in say_hello()
|
| /tonic/examples/src/helloworld/ |
| H A D | server.rs | 4 use hello_world::{HelloReply, HelloRequest}; 18 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 21 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/blocking/ |
| H A D | server.rs | 4 use hello_world::{HelloReply, HelloRequest}; 20 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 23 let reply = hello_world::HelloReply { in say_hello()
|
| H A D | client.rs | 7 use hello_world::{greeter_client::GreeterClient, HelloReply, HelloRequest}; 36 ) -> Result<tonic::Response<HelloReply>, tonic::Status> { in say_hello() argument
|
| /tonic/examples/src/compression/ |
| H A D | server.rs | 4 use hello_world::{HelloReply, HelloRequest}; 19 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 22 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/tracing/ |
| H A D | server.rs | 9 HelloReply, HelloRequest, 21 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 24 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/grpc-web/ |
| H A D | server.rs | 4 use hello_world::{HelloReply, HelloRequest}; 18 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 21 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/autoreload/ |
| H A D | server.rs | 4 use hello_world::{HelloReply, HelloRequest}; 18 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 21 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/multiplex/ |
| H A D | server.rs | 13 HelloReply, HelloRequest, 45 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 46 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/richer-error/ |
| H A D | server.rs | 5 use hello_world::{HelloReply, HelloRequest}; 19 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 51 let reply = hello_world::HelloReply { in say_hello()
|
| H A D | server_vec.rs | 5 use hello_world::{HelloReply, HelloRequest}; 19 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 51 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/interceptor/ |
| H A D | server.rs | 4 use hello_world::{HelloReply, HelloRequest}; 18 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 22 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/uds/ |
| H A D | server.rs | 18 HelloReply, HelloRequest, 29 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 36 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/health/ |
| H A D | server.rs | 4 use hello_world::{HelloReply, HelloRequest}; 20 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 23 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/mock/ |
| H A D | mock.rs | 15 HelloReply, HelloRequest, 69 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 72 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/dynamic/ |
| H A D | server.rs | 5 use hello_world::{HelloReply, HelloRequest}; 51 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 54 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/examples/src/reflection/ |
| H A D | server.rs | 19 ) -> Result<Response<proto::HelloReply>, Status> { in say_hello() argument 22 let reply = proto::HelloReply { in say_hello()
|
| /tonic/tonic/benches-disabled/benchmarks/ |
| H A D | request_response.rs | 3 use crate::benchmarks::compiled_protos::helloworld::{HelloReply, HelloRequest}; 11 let _response = tonic::Request::new(HelloReply { message: _message }); in build_response()
|
| /tonic/examples/src/tower/ |
| H A D | server.rs | 9 use hello_world::{HelloReply, HelloRequest}; 23 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 26 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/tonic/benches-disabled/proto/helloworld/ |
| H A D | helloworld.proto | 26 rpc SayHello (HelloRequest) returns (HelloReply) {} 35 message HelloReply { message
|
| /tonic/examples/proto/helloworld/ |
| H A D | helloworld.proto | 26 rpc SayHello (HelloRequest) returns (HelloReply) {} 35 message HelloReply { message
|
| /tonic/examples/src/h2c/ |
| H A D | server.rs | 10 use hello_world::{HelloReply, HelloRequest}; 24 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument 27 let reply = hello_world::HelloReply { in say_hello()
|
| /tonic/tonic/benches-disabled/benchmarks/compiled_protos/ |
| H A D | helloworld.rs | 9 pub struct HelloReply { struct 57 ) -> Result<tonic::Response<super::HelloReply>, tonic::Status> { in say_hello() argument 83 ) -> Result<tonic::Response<super::HelloReply>, tonic::Status> { in say_hello() argument 136 type Response = super::HelloReply; in call()
|
| /tonic/examples/ |
| H A D | helloworld-tutorial.md | 59 rpc SayHello (HelloRequest) returns (HelloReply); 71 message HelloReply { 84 rpc SayHello (HelloRequest) returns (HelloReply); 91 message HelloReply { 148 use hello_world::{HelloReply, HelloRequest}; 166 ) -> Result<Response<HelloReply>, Status> { // Return an instance of type HelloReply 169 let reply = HelloReply { 201 use hello_world::{HelloReply, HelloRequest}; 215 ) -> Result<Response<HelloReply>, Status> { 218 let reply = HelloReply {
|