pub trait Encoder: Send { // Required method fn into_bytes(self) -> Vec<u8> ⓘ; }
Returns the serialized object as a slice.