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