pub enum PartitionSearchMode {
Linear,
PartiallySorted(Vec<usize>),
Sorted,
}
Expand description
Specifies partition column properties in terms of input ordering
Variants§
Linear
None of the columns among the partition columns is ordered.
PartiallySorted(Vec<usize>)
Some columns of the partition columns are ordered but not all
Sorted
All Partition columns are ordered (Also empty case)
Trait Implementations§
source§impl Clone for PartitionSearchMode
impl Clone for PartitionSearchMode
source§fn clone(&self) -> PartitionSearchMode
fn clone(&self) -> PartitionSearchMode
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 PartitionSearchMode
impl Debug for PartitionSearchMode
source§impl PartialEq<PartitionSearchMode> for PartitionSearchMode
impl PartialEq<PartitionSearchMode> for PartitionSearchMode
source§fn eq(&self, other: &PartitionSearchMode) -> bool
fn eq(&self, other: &PartitionSearchMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PartitionSearchMode
Auto Trait Implementations§
impl RefUnwindSafe for PartitionSearchMode
impl Send for PartitionSearchMode
impl Sync for PartitionSearchMode
impl Unpin for PartitionSearchMode
impl UnwindSafe for PartitionSearchMode
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