pub enum RuleOutcome {
Skipped,
MatchedAndExecuted,
MatchedAndTerminated,
Failed(String),
}Variants§
Trait Implementations§
Source§impl Clone for RuleOutcome
impl Clone for RuleOutcome
Source§fn clone(&self) -> RuleOutcome
fn clone(&self) -> RuleOutcome
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 RuleOutcome
impl Debug for RuleOutcome
Source§impl<'de> Deserialize<'de> for RuleOutcome
impl<'de> Deserialize<'de> for RuleOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RuleOutcome
impl PartialEq for RuleOutcome
Source§impl Serialize for RuleOutcome
impl Serialize for RuleOutcome
impl Eq for RuleOutcome
impl StructuralPartialEq for RuleOutcome
Auto Trait Implementations§
impl Freeze for RuleOutcome
impl RefUnwindSafe for RuleOutcome
impl Send for RuleOutcome
impl Sync for RuleOutcome
impl Unpin for RuleOutcome
impl UnsafeUnpin for RuleOutcome
impl UnwindSafe for RuleOutcome
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