#[repr(u8)]pub enum Combmode {
OR = 0,
MATCH = 1,
IO = 2,
AND = 3,
}Variants§
OR = 0
OR. The event occurs when either the specified match or I/O condition occurs.
MATCH = 1
MATCH. Uses the specified match only.
IO = 2
IO. Uses the specified I/O condition only.
AND = 3
AND. The event occurs when the specified match and I/O condition occur simultaneously.
Implementations§
Trait Implementations§
Source§impl Ord for Combmode
impl Ord for Combmode
Source§impl PartialOrd for Combmode
impl PartialOrd for Combmode
impl Copy for Combmode
impl Eq for Combmode
impl StructuralPartialEq for Combmode
Auto Trait Implementations§
impl Freeze for Combmode
impl RefUnwindSafe for Combmode
impl Send for Combmode
impl Sync for Combmode
impl Unpin for Combmode
impl UnwindSafe for Combmode
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