Enum Matcfg
#[repr(u8)]pub enum Matcfg {
_000 = 0,
_010 = 2,
_011 = 3,
_100 = 4,
_101 = 5,
_110 = 6,
_111 = 7,
}Expand description
Match Configuration
Value on reset: 0
Variants§
_000 = 0
0: Match disabled.
_010 = 2
2: Match enabled (1st data word equals MATCH0 OR MATCH1).
_011 = 3
3: Match enabled (any data word equals MATCH0 OR MATCH1).
_100 = 4
4: Match enabled (1st data word equals MATCH0 AND 2nd data word equals MATCH1).
_101 = 5
5: Match enabled (any data word equals MATCH0 AND next data word equals MATCH1).
_110 = 6
6: Match enabled (1st data word AND MATCH1 equals MATCH0 AND MATCH1).
_111 = 7
7: Match enabled (any data word AND MATCH1 equals MATCH0 AND MATCH1).
Trait Implementations§
impl Copy for Matcfg
impl Eq for Matcfg
impl IsEnum for Matcfg
impl StructuralPartialEq for Matcfg
Auto Trait Implementations§
impl Freeze for Matcfg
impl RefUnwindSafe for Matcfg
impl Send for Matcfg
impl Sync for Matcfg
impl Unpin for Matcfg
impl UnwindSafe for Matcfg
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