Home
last modified time | relevance | path

Searched refs:Decode (Results 1 – 7 of 7) sorted by relevance

/tonic/tonic/src/codec/
H A Dmod.rs108 type Decode: Send + 'static; typedef
113 type Decoder: Decoder<Item = Self::Decode, Error = Status> + Send + 'static;
H A Dprost.rs57 type Decode = U; typedef
/tonic/tonic/src/server/
H A Dgrpc.rs225 S: UnaryService<T::Decode, Response = T::Encode>, in unary() argument
268 S: ServerStreamingService<T::Decode, Response = T::Encode>, in server_streaming() argument
309 S: ClientStreamingService<T::Decode, Response = T::Encode>, in client_streaming() argument
342 S: StreamingService<T::Decode, Response = T::Encode> + Send, in streaming() argument
367 ) -> Result<Request<T::Decode>, Status> in map_request_unary() argument
400 ) -> Result<Request<Streaming<T::Decode>>, Status> in map_request_streaming() argument
/tonic/examples/src/codec_buffers/
H A Dcommon.rs26 type Decode = U; typedef
/tonic/tonic/src/client/
H A Dgrpc.rs217 C: Codec<Encode = M1, Decode = M2>, in unary() argument
237 C: Codec<Encode = M1, Decode = M2>, in client_streaming() argument
273 C: Codec<Encode = M1, Decode = M2>, in server_streaming() argument
293 C: Codec<Encode = M1, Decode = M2>, in streaming() argument
/tonic/tonic-web/src/
H A Dcall.rs48 Decode, enumerator
89 Self::new(inner, Direction::Decode, encoding) in request()
101 Self::new_client(inner, Direction::Decode, Encoding::None) in client_response()
112 Direction::Decode => BUFFER_SIZE, in new_client()
262 if self.client && self.direction == Direction::Decode { in poll_frame()
324 Direction::Decode => self.poll_decode(cx), in poll_frame()
/tonic/examples/src/json-codec/
H A Dcommon.rs69 type Decode = U; typedef