pub struct RowSelector {
    pub row_count: usize,
    pub skip: bool,
}Expand description
RowSelector represents a consecutive range of rows to either select or skip
when scanning an ORC file.
A RowSelector is a building block of RowSelection.
Fields§
§row_count: usizeThe number of rows
skip: boolIf true, skip row_count rows; otherwise select them
Implementations§
Trait Implementations§
Source§impl Clone for RowSelector
 
impl Clone for RowSelector
Source§fn clone(&self) -> RowSelector
 
fn clone(&self) -> RowSelector
Returns a duplicate 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 RowSelector
 
impl Debug for RowSelector
Source§impl FromIterator<RowSelector> for RowSelection
 
impl FromIterator<RowSelector> for RowSelection
Source§fn from_iter<T: IntoIterator<Item = RowSelector>>(iter: T) -> Self
 
fn from_iter<T: IntoIterator<Item = RowSelector>>(iter: T) -> Self
Creates a value from an iterator. Read more
Source§impl PartialEq for RowSelector
 
impl PartialEq for RowSelector
impl Copy for RowSelector
impl Eq for RowSelector
impl StructuralPartialEq for RowSelector
Auto Trait Implementations§
impl Freeze for RowSelector
impl RefUnwindSafe for RowSelector
impl Send for RowSelector
impl Sync for RowSelector
impl Unpin for RowSelector
impl UnwindSafe for RowSelector
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.