pub trait ColumnTrait {
// Required methods
fn column_def(&self) -> &ColumnDef;
fn column_ref(&self) -> &ColumnRef;
}Expand description
Helper trait for types that expose an underlying column definition and reference.
Required Methods§
Sourcefn column_def(&self) -> &ColumnDef
fn column_def(&self) -> &ColumnDef
Logical definition (column metadata).
Sourcefn column_ref(&self) -> &ColumnRef
fn column_ref(&self) -> &ColumnRef
Reference used in expressions.