pub enum CountMethod {
ParquetMetadata,
FullScan,
Sampling,
StreamFullScan,
}Expand description
Method used to obtain the row count.
Variants§
ParquetMetadata
Read from Parquet file footer metadata (exact, zero row reading).
FullScan
Full scan of the file (exact).
Sampling
Sample-based estimation (approximate).
StreamFullScan
Full scan of a streaming source (no file metadata available).
Trait Implementations§
Source§impl Clone for CountMethod
impl Clone for CountMethod
Source§fn clone(&self) -> CountMethod
fn clone(&self) -> CountMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CountMethod
impl Debug for CountMethod
Source§impl<'de> Deserialize<'de> for CountMethod
impl<'de> Deserialize<'de> for CountMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CountMethod
impl PartialEq for CountMethod
Source§fn eq(&self, other: &CountMethod) -> bool
fn eq(&self, other: &CountMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CountMethod
impl Serialize for CountMethod
impl Copy for CountMethod
impl Eq for CountMethod
impl StructuralPartialEq for CountMethod
Auto Trait Implementations§
impl Freeze for CountMethod
impl RefUnwindSafe for CountMethod
impl Send for CountMethod
impl Sync for CountMethod
impl Unpin for CountMethod
impl UnsafeUnpin for CountMethod
impl UnwindSafe for CountMethod
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