pub trait Encode {
// Required method
fn encode(&self, buf: &mut BytesMut) -> Result<()>;
}
Expand description
Encode a type to a buffer.
pub trait Encode {
// Required method
fn encode(&self, buf: &mut BytesMut) -> Result<()>;
}
Encode a type to a buffer.