pub trait Encode<W>where
W: IoWrite,{
// Required method
fn encode(&self, writer: &mut W) -> Result<usize, Error<W::Error>>;
}
Expand description
A type which can be encoded to MessagePack
pub trait Encode<W>where
W: IoWrite,{
// Required method
fn encode(&self, writer: &mut W) -> Result<usize, Error<W::Error>>;
}
A type which can be encoded to MessagePack