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<BooleanIndex> for BooleanIndex
impl PartialEq<BooleanIndex> 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 ==
.