pub trait Encoder {
    type Item;
    type Error: From<Error>;

    // Required method
    fn encode(
        &mut self,
        item: Self::Item,
        dst: &mut BytesMut
    ) -> Result<(), Self::Error>;
}
Expand description

Encoding of messages as bytes, for use with FramedWrite.

Required Associated Types§

source

type Item

The type of items consumed by encode

source

type Error: From<Error>

The type of encoding errors.

Required Methods§

source

fn encode( &mut self, item: Self::Item, dst: &mut BytesMut ) -> Result<(), Self::Error>

Encodes an item into the BytesMut provided by dst.

Implementors§

source§

impl Encoder for BytesCodec

§

type Item = Bytes

§

type Error = Error

source§

impl Encoder for LengthCodec

§

type Item = Bytes

§

type Error = Error

source§

impl Encoder for LinesCodec

§

type Item = String

§

type Error = Error

source§

impl<Enc, Dec> Encoder for CborCodec<Enc, Dec>where for<'de> Dec: Deserialize<'de> + 'static, for<'de> Enc: Serialize + 'static,

Encoder impl encodes object streams to bytes

§

type Item = Enc

§

type Error = CborCodecError

source§

impl<Enc, Dec> Encoder for JsonCodec<Enc, Dec>where for<'de> Dec: Deserialize<'de> + 'static, for<'de> Enc: Serialize + 'static,

Encoder impl encodes object streams to bytes

§

type Item = Enc

§

type Error = JsonCodecError