pub trait ValueRowSerdeNew: Clone {
// Required method
fn new(
value_indices: Arc<[usize]>,
table_columns: Arc<[ColumnDesc]>,
) -> Self;
}
Expand description
Part of ValueRowSerde
that implements new
a serde given column_ids
and schema
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.