pub trait ValueRowSerializer: Clone {
// Required method
fn serialize(&self, row: impl Row) -> Vec<u8> ⓘ;
}
Expand description
Part of ValueRowSerde
that implements serialize
a Row
into bytes
Required Methods§
Object Safety§
This trait is not object safe.