pub trait Index: Send + Sync + Debug {
    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.

Required Methods

Trait Implementations

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Implementors