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 RefUnwindSafe for Vote
impl Send for Vote
impl Sync for Vote
impl Unpin for Vote
impl UnwindSafe for Vote
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more