Struct parquet2::indexes::NativeIndex
source · pub struct NativeIndex<T: NativeType> {
pub primitive_type: PrimitiveType,
pub indexes: Vec<PageIndex<T>>,
pub boundary_order: BoundaryOrder,
}
Expand description
An index of a column of NativeType
physical representation
Fields§
§primitive_type: PrimitiveType
The primitive type
indexes: Vec<PageIndex<T>>
The indexes, one item per page
boundary_order: BoundaryOrder
the order
Trait Implementations§
source§impl<T: Clone + NativeType> Clone for NativeIndex<T>
impl<T: Clone + NativeType> Clone for NativeIndex<T>
source§fn clone(&self) -> NativeIndex<T>
fn clone(&self) -> NativeIndex<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug + NativeType> Debug for NativeIndex<T>
impl<T: Debug + NativeType> Debug for NativeIndex<T>
source§impl<T: Hash + NativeType> Hash for NativeIndex<T>
impl<T: Hash + NativeType> Hash for NativeIndex<T>
source§impl<T: NativeType> Index for NativeIndex<T>
impl<T: NativeType> Index for NativeIndex<T>
fn as_any(&self) -> &dyn Any
fn physical_type(&self) -> &PhysicalType
source§impl<T: PartialEq + NativeType> PartialEq<NativeIndex<T>> for NativeIndex<T>
impl<T: PartialEq + NativeType> PartialEq<NativeIndex<T>> for NativeIndex<T>
source§fn eq(&self, other: &NativeIndex<T>) -> bool
fn eq(&self, other: &NativeIndex<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.