#[repr(u8)]pub enum Combmode {
Or = 0,
Match = 1,
Io = 2,
And = 3,
}Expand description
Selects how the specified match and I/O condition are used and combined.
Value on reset: 0
Variants§
Or = 0
0: OR. The event occurs when either the specified match or I/O condition occurs.
Match = 1
1: MATCH. Uses the specified match only.
Io = 2
2: IO. Uses the specified I/O condition only.
And = 3
3: AND. The event occurs when the specified match and I/O condition occur simultaneously.
Trait Implementations§
impl Copy for Combmode
impl Eq for Combmode
impl IsEnum 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