Trait ColumnDescTestExt

Source
pub trait ColumnDescTestExt {
    // Required method
    fn new(data_type: DataType, name: &str, column_id: i32) -> Self;
}

Required Methods§

Source

fn new(data_type: DataType, name: &str, column_id: i32) -> Self

Create a [ColumnDesc] with the given name and type.

Note: Only used for tests.

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 ColumnDescTestExt for ColumnDesc

Source§

fn new(data_type: DataType, name: &str, column_id: i32) -> Self

Implementors§