Home
last modified time | relevance | path

Searched refs:client_streaming (Results 1 – 9 of 9) sorted by relevance

/tonic/tonic-build/src/
H A Dmanual.rs173 client_streaming: bool, field
204 fn client_streaming(&self) -> bool { in client_streaming() method
205 self.client_streaming in client_streaming()
268 client_streaming: bool, field
326 pub fn client_streaming(mut self) -> Self { in client_streaming() method
327 self.client_streaming = true; in client_streaming()
347 client_streaming: self.client_streaming, in build()
H A Dclient.rs184 let method = match (method.client_streaming(), method.server_streaming()) { in generate_methods()
309 self.inner.client_streaming(req, path, codec).await in generate_client_streaming()
H A Dserver.rs261 method.client_streaming(), in generate_trait_methods()
385 let method_stream = match (method.client_streaming(), method.server_streaming()) { in generate_methods()
610 let res = grpc.client_streaming(method, req).await; in generate_client_streaming()
H A Dlib.rs139 fn client_streaming(&self) -> bool; in client_streaming() method
H A Dprost.rs151 fn client_streaming(&self) -> bool { in client_streaming() method
152 self.prost_method.client_streaming in client_streaming()
/tonic/interop/src/bin/
H A Dclient.rs64 client::client_streaming(&mut client, &mut test_results).await in main()
/tonic/tonic/src/client/
H A Dgrpc.rs222 self.client_streaming(request, path, codec).await in unary()
226 pub async fn client_streaming<S, M1, M2, C>( in client_streaming() method
/tonic/tonic/src/server/
H A Dgrpc.rs303 pub async fn client_streaming<S, B>( in client_streaming() function
/tonic/interop/src/
H A Dclient.rs84 pub async fn client_streaming(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) { in client_streaming() function