pub enum ApplyOrder {
TopDown,
BottomUp,
}
Expand description
Specifies how recursion for an OptimizerRule
should be handled.
Some(apply_order)
: The Optimizer will recursively apply the rule to the plan.None
: the rule must handle any required recursion itself.
Variants§
TopDown
Apply the rule to the node before its inputs
BottomUp
Apply the rule to the node after its inputs
Trait Implementations§
source§impl Clone for ApplyOrder
impl Clone for ApplyOrder
source§fn clone(&self) -> ApplyOrder
fn clone(&self) -> ApplyOrder
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 ApplyOrder
impl Debug for ApplyOrder
source§impl PartialEq for ApplyOrder
impl PartialEq for ApplyOrder
impl Copy for ApplyOrder
impl StructuralPartialEq for ApplyOrder
Auto Trait Implementations§
impl Freeze for ApplyOrder
impl RefUnwindSafe for ApplyOrder
impl Send for ApplyOrder
impl Sync for ApplyOrder
impl Unpin for ApplyOrder
impl UnwindSafe for ApplyOrder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more