pub trait ValueRowDeserializer: Clone {
// Required method
fn deserialize(&self, encoded_bytes: &[u8]) -> Result<Vec<Datum>>;
}
Expand description
Part of ValueRowSerde
that implements deserialize
bytes into a Row
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.