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 for NativeIndex<T>
impl<T: PartialEq + NativeType> PartialEq 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 ==
.impl<T: Eq + NativeType> Eq for NativeIndex<T>
impl<T: NativeType> StructuralPartialEq for NativeIndex<T>
Auto Trait Implementations§
impl<T> Freeze for NativeIndex<T>
impl<T> RefUnwindSafe for NativeIndex<T>where
T: RefUnwindSafe,
impl<T> Send for NativeIndex<T>
impl<T> Sync for NativeIndex<T>
impl<T> Unpin for NativeIndex<T>where
T: Unpin,
impl<T> UnwindSafe for NativeIndex<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more