Trait parquet2::indexes::Index

source ·
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 ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Implementors§