Trait mz_persist_types::columnar::ColumnCfg
source · pub trait ColumnCfg<T: Data> {
// Required method
fn as_type(&self) -> DataType;
}
Expand description
If necessary, whatever information beyond the type of Self
needed to
produce a columnar schema for this type.
Conceptually: type of Self
+ this config => columnar schema.
For most Data impls, this is not necessary and set to ()
.