Home
last modified time | relevance | path

Searched refs:R (Results 1 – 6 of 6) sorted by relevance

/tonic/tonic/src/server/
H A Dservice.rs10 pub trait UnaryService<R> {
18 fn call(&mut self, request: Request<R>) -> Self::Future; in call()
37 pub trait ServerStreamingService<R> {
48 fn call(&mut self, request: Request<R>) -> Self::Future; in call()
69 pub trait ClientStreamingService<R> {
77 fn call(&mut self, request: Request<Streaming<R>>) -> Self::Future; in call()
96 pub trait StreamingService<R> {
107 fn call(&mut self, request: Request<Streaming<R>>) -> Self::Future; in call()
/tonic/tests/integration_tests/tests/
H A Dcomplex_tower_middleware.rs56 impl<S, R, ResBody> Service<R> for MyService<S>
58 S: Service<R, Response = http::Response<ResBody>>,
68 fn call(&mut self, req: R) -> Self::Future { in call()
/tonic/examples/data/tls/
H A Dclient2.pem6 Y2MoDX83iwNF4QTfMibULyXffOnC5XcvayS/W8ToxaLweNE2bIwakrl3K+R/4tdI
H A Dclient2.key4 krl3K+R/4tdI9ZguSgHFBMRCNp33ZDGxD01XHduETXXdHXxKufxLNjCFtAWwM+GF
/tonic/tonic/benches-disabled/benchmarks/compiled_protos/
H A Dhelloworld.rs112 impl<T: Greeter, R> Service<R> for GreeterServer<T> {
119 fn call(&mut self, _: R) -> Self::Future { in call()
/tonic/examples/src/routeguide/
H A Dserver.rs174 const R: f64 = 6_371_000.0; // meters in calc_distance() constant
192 (R * c) as i32 in calc_distance()