pub enum RuleStatus {
Fired,
FiredTimes(u32),
DidNotFire,
}Variants§
Trait Implementations§
Source§impl Clone for RuleStatus
impl Clone for RuleStatus
Source§fn clone(&self) -> RuleStatus
fn clone(&self) -> RuleStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuleStatus
impl Debug for RuleStatus
impl Eq for RuleStatus
Source§impl PartialEq for RuleStatus
impl PartialEq for RuleStatus
impl StructuralPartialEq for RuleStatus
Auto Trait Implementations§
impl Freeze for RuleStatus
impl RefUnwindSafe for RuleStatus
impl Send for RuleStatus
impl Sync for RuleStatus
impl Unpin for RuleStatus
impl UnsafeUnpin for RuleStatus
impl UnwindSafe for RuleStatus
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