pub enum FlowAction {
Chain,
Skip(u32),
SkipAfter(String),
MultiMatch,
}Expand description
Flow control actions.
Variants§
Chain
Chain to next rule.
Skip(u32)
Skip N rules.
SkipAfter(String)
Skip to marker.
MultiMatch
Run operator on each value separately.
Trait Implementations§
Source§impl Clone for FlowAction
impl Clone for FlowAction
Source§fn clone(&self) -> FlowAction
fn clone(&self) -> FlowAction
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for FlowAction
impl RefUnwindSafe for FlowAction
impl Send for FlowAction
impl Sync for FlowAction
impl Unpin for FlowAction
impl UnwindSafe for FlowAction
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