Trait ValueRowSerdeNew

Source
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§

Source

fn new(value_indices: Arc<[usize]>, table_columns: Arc<[ColumnDesc]>) -> Self

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.

Implementations on Foreign Types§

Source§

impl ValueRowSerdeNew for BasicSerde

Source§

fn new( value_indices: Arc<[usize]>, table_columns: Arc<[ColumnDesc]>, ) -> BasicSerde

Source§

impl ValueRowSerdeNew for ColumnAwareSerde

Source§

fn new( value_indices: Arc<[usize]>, table_columns: Arc<[ColumnDesc]>, ) -> ColumnAwareSerde

Source§

impl ValueRowSerdeNew for EitherSerde

Source§

fn new( _value_indices: Arc<[usize]>, _table_columns: Arc<[ColumnDesc]>, ) -> EitherSerde

Implementors§