Struct parquet2::indexes::FixedLenByteIndex
source · pub struct FixedLenByteIndex {
pub primitive_type: PrimitiveType,
pub indexes: Vec<PageIndex<Vec<u8>>>,
pub boundary_order: BoundaryOrder,
}
Expand description
An index of a column of fixed len byte physical type
Fields§
§primitive_type: PrimitiveType
The PrimitiveType
.
indexes: Vec<PageIndex<Vec<u8>>>
The indexes, one item per page
boundary_order: BoundaryOrder
Trait Implementations§
source§impl Clone for FixedLenByteIndex
impl Clone for FixedLenByteIndex
source§fn clone(&self) -> FixedLenByteIndex
fn clone(&self) -> FixedLenByteIndex
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 Debug for FixedLenByteIndex
impl Debug for FixedLenByteIndex
source§impl Hash for FixedLenByteIndex
impl Hash for FixedLenByteIndex
source§impl Index for FixedLenByteIndex
impl Index for FixedLenByteIndex
fn as_any(&self) -> &dyn Any
fn physical_type(&self) -> &PhysicalType
source§impl PartialEq for FixedLenByteIndex
impl PartialEq for FixedLenByteIndex
source§fn eq(&self, other: &FixedLenByteIndex) -> bool
fn eq(&self, other: &FixedLenByteIndex) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for FixedLenByteIndex
impl StructuralPartialEq for FixedLenByteIndex
Auto Trait Implementations§
impl Freeze for FixedLenByteIndex
impl RefUnwindSafe for FixedLenByteIndex
impl Send for FixedLenByteIndex
impl Sync for FixedLenByteIndex
impl Unpin for FixedLenByteIndex
impl UnwindSafe for FixedLenByteIndex
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