pub enum FlowOutcome {
Continue,
Chain,
Skip(u32),
SkipAfter(String),
}Expand description
Flow control outcome.
Variants§
Continue
Continue normal processing.
Chain
Chain to next rule.
Skip(u32)
Skip N rules.
SkipAfter(String)
Skip to marker.
Trait Implementations§
Source§impl Clone for FlowOutcome
impl Clone for FlowOutcome
Source§fn clone(&self) -> FlowOutcome
fn clone(&self) -> FlowOutcome
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 moreSource§impl Debug for FlowOutcome
impl Debug for FlowOutcome
Source§impl PartialEq for FlowOutcome
impl PartialEq for FlowOutcome
impl StructuralPartialEq for FlowOutcome
Auto Trait Implementations§
impl Freeze for FlowOutcome
impl RefUnwindSafe for FlowOutcome
impl Send for FlowOutcome
impl Sync for FlowOutcome
impl Unpin for FlowOutcome
impl UnwindSafe for FlowOutcome
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