pub enum CostModelKind {
SkewClassifier,
Cardinality,
}Expand description
v0.6.5 W2.5 cost-model selector for WCOJ dispatch.
Variants§
SkewClassifier
Legacy skew-classifier opt-out selector.
On current G38 integration code the GPU classifier surface is absent, so this selector is implemented as a conservative opt-out from stats/cardinality dispatch.
Cardinality
Stats/cardinality-backed dispatch selector.
Trait Implementations§
Source§impl Clone for CostModelKind
impl Clone for CostModelKind
Source§fn clone(&self) -> CostModelKind
fn clone(&self) -> CostModelKind
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 moreimpl Copy for CostModelKind
Source§impl Debug for CostModelKind
impl Debug for CostModelKind
impl Eq for CostModelKind
Source§impl PartialEq for CostModelKind
impl PartialEq for CostModelKind
Source§fn eq(&self, other: &CostModelKind) -> bool
fn eq(&self, other: &CostModelKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CostModelKind
Auto Trait Implementations§
impl Freeze for CostModelKind
impl RefUnwindSafe for CostModelKind
impl Send for CostModelKind
impl Sync for CostModelKind
impl Unpin for CostModelKind
impl UnsafeUnpin for CostModelKind
impl UnwindSafe for CostModelKind
Blanket Implementations§
impl<T> Allocation for T
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