pub trait ColumnProvider: Send + Sync {
    fn get_columns(&self) -> Vec<Column>;
}

Required Methods

Implementors