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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.