Home
last modified time | relevance | path

Searched refs:GrpcWebCall (Results 1 – 4 of 4) sorted by relevance

/tonic/tonic-web/src/
H A Dclient.rs13 use crate::call::GrpcWebCall;
53 S: Service<Request<GrpcWebCall<B1>>, Response = Response<B2>>,
55 type Response = Response<GrpcWebCall<B2>>;
73 let req = req.map(GrpcWebCall::client_request); in call()
93 type Output = Result<Response<GrpcWebCall<B>>, E>;
98 Poll::Ready(res.map(|r| r.map(GrpcWebCall::client_response))) in poll()
H A Dlib.rs73 pub use call::GrpcWebCall;
H A Dcall.rs62 pub struct GrpcWebCall<B> { struct
73 impl<B: Default> Default for GrpcWebCall<B> { argument
87 impl<B> GrpcWebCall<B> { implementation
105 GrpcWebCall { in new_client()
123 GrpcWebCall { in new()
161 impl<B> GrpcWebCall<B> implementation
250 impl<B> Body for GrpcWebCall<B> implementation
339 impl<B> Stream for GrpcWebCall<B> implementation
H A Dservice.rs14 use crate::call::{Encoding, GrpcWebCall};
224 req.map(|b| Body::new(GrpcWebCall::request(b, encoding))) in coerce_request()
233 .map(|b| GrpcWebCall::response(b, encoding)) in coerce_response()