Trait mz_sql::plan::expr::AbstractColumnType
source · pub trait AbstractColumnType {
type AbstractScalarType;
// Required method
fn scalar_type(self) -> Self::AbstractScalarType;
}
Expand description
A column type-like object whose underlying scalar type-like object can be ascertained.
Abstracts over ColumnType
and CoercibleColumnType
.
Required Associated Types§
Required Methods§
sourcefn scalar_type(self) -> Self::AbstractScalarType
fn scalar_type(self) -> Self::AbstractScalarType
Converts the column type-like object into its inner scalar type-like object.