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§
Object Safety§
This trait is not object safe.