Trait tonic::codec::Encoder [−][src]
Encodes gRPC message types
Associated Types
type Item
[src]
The type that is encoded.
type Error: From<Error>
[src]
The type of encoding errors.
The type of unrecoverable frame encoding errors.
Required methods
fn encode(
&mut self,
item: Self::Item,
dst: &mut EncodeBuf<'_>
) -> Result<(), Self::Error>
[src]
&mut self,
item: Self::Item,
dst: &mut EncodeBuf<'_>
) -> Result<(), Self::Error>
Encodes a message into the provided buffer.