Home
last modified time | relevance | path

Searched refs:HelloReply (Results 1 – 25 of 25) sorted by relevance

/tonic/examples/src/cancellation/
H A Dserver.rs7 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 Dserver.rs17 HelloReply, HelloRequest,
28 ) -> Result<Response<HelloReply>, Status> { in say_hello() argument
31 let reply = HelloReply { in say_hello()
/tonic/examples/src/helloworld/
H A Dserver.rs4 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 Dserver.rs4 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 Dclient.rs7 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 Dserver.rs4 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 Dserver.rs9 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 Dserver.rs4 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 Dserver.rs4 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 Dserver.rs13 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 Dserver.rs5 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 Dserver_vec.rs5 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 Dserver.rs4 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 Dserver.rs18 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 Dserver.rs4 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 Dmock.rs15 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 Dserver.rs5 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 Dserver.rs19 ) -> Result<Response<proto::HelloReply>, Status> { in say_hello() argument
22 let reply = proto::HelloReply { in say_hello()
/tonic/tonic/benches-disabled/benchmarks/
H A Drequest_response.rs3 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 Dserver.rs9 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 Dhelloworld.proto26 rpc SayHello (HelloRequest) returns (HelloReply) {}
35 message HelloReply { message
/tonic/examples/proto/helloworld/
H A Dhelloworld.proto26 rpc SayHello (HelloRequest) returns (HelloReply) {}
35 message HelloReply { message
/tonic/examples/src/h2c/
H A Dserver.rs10 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 Dhelloworld.rs9 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 Dhelloworld-tutorial.md59 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 {