pub trait WireColumnTypes<Src: WireSource> {
// Required method
fn column_type_key(&self, column_index: usize) -> Src::TypeKey;
}Expand description
Schema-side source-native type key for one column of one table.
Required Methods§
Sourcefn column_type_key(&self, column_index: usize) -> Src::TypeKey
fn column_type_key(&self, column_index: usize) -> Src::TypeKey
Type key for the column at column_index.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".