trait Encode {
// Required method
fn encode_to(self, data_type: &DataType, data: &mut Vec<u8>);
}Expand description
A trait unifying ToDatumRef and already encoded bytes.
trait Encode {
// Required method
fn encode_to(self, data_type: &DataType, data: &mut Vec<u8>);
}A trait unifying ToDatumRef and already encoded bytes.