Searched refs:Output1 (Results 1 – 4 of 4) sorted by relevance
| /tonic/tests/integration_tests/proto/ |
| H A D | test.proto | 13 rpc UnaryCall(Input1) returns (Output1); 15 rpc StreamCall(Input1) returns (stream Output1); 21 message Output1 { message
|
| /tonic/tests/disable_comments/proto/ |
| H A D | test.proto | 8 rpc Rpc1(Input1) returns (Output1); 16 rpc Rpc(Input1) returns (Output1); 26 message Output1 {} message
|
| /tonic/tests/integration_tests/tests/ |
| H A D | routes_builder.rs | 7 test1_client, test1_server, test_client, test_server, Input, Input1, Output, Output1, 32 async fn unary_call(&self, request: Request<Input1>) -> Result<Response<Output1>, Status> { in multiple_service_using_routes_builder() argument 33 Ok(Response::new(Output1 { in multiple_service_using_routes_builder() 38 type StreamCallStream = BoxStream<Output1>; in multiple_service_using_routes_builder() 44 let output = Output1 { in multiple_service_using_routes_builder()
|
| H A D | max_message_size.rs | 5 pb::{test1_client, test1_server, Input1, Output1}, 127 async fn unary_call(&self, _req: Request<Input1>) -> Result<Response<Output1>, Status> { in response_stream_limit() argument 132 Pin<Box<dyn Stream<Item = Result<Output1, Status>> + Send + 'static>>; in response_stream_limit() 138 let blob = Output1 { in response_stream_limit() 284 async fn unary_call(&self, _req: Request<Input1>) -> Result<Response<Output1>, Status> { in max_message_run() argument 285 Ok(Response::new(Output1 { in max_message_run() 291 Pin<Box<dyn Stream<Item = Result<Output1, Status>> + Send + 'static>>; in max_message_run()
|