pub enum OptimizeStrategy {
PriorityAndComplexity,
BinaryTree,
}Expand description
How to organize the filter rules.
Variants§
PriorityAndComplexity
Uses priority and rule complexity for ordering.
BinaryTree
Uses a simple Binary Search Tree for ordering.
Auto Trait Implementations§
impl Freeze for OptimizeStrategy
impl RefUnwindSafe for OptimizeStrategy
impl Send for OptimizeStrategy
impl Sync for OptimizeStrategy
impl Unpin for OptimizeStrategy
impl UnwindSafe for OptimizeStrategy
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