pub enum Vote {
Positive,
Negative,
Insufficient,
OffState,
}
Variants§
Positive
Successful comparison
Negative
Negative comparison, should stop this and all future voting for this trigger guide
Insufficient
No match, but doesn’t exclude future comparisons (e.g. hold event)
OffState
Indicate that this is an off state that need to be processed separately (or later)
Auto Trait Implementations§
impl Freeze for Vote
impl RefUnwindSafe for Vote
impl Send for Vote
impl Sync for Vote
impl Unpin for Vote
impl UnwindSafe for Vote
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