pub trait Index: Send + Sync + Debug {
// Required methods
fn as_any(&self) -> &dyn Any;
fn physical_type(&self) -> &PhysicalType;
}
Expand description
Trait object representing a ColumnIndex
in Rust’s native format.
See NativeIndex
, ByteIndex
and FixedLenByteIndex
for concrete implementations.