#[repr(u8)]pub enum Matcfg {
DISABLED = 0,
_RESERVED_1 = 1,
ENABLED_FIRSTDATAMATCH = 2,
ENABLED_ANYDATAMATCH = 3,
ENABLED_DATAMATCH_100 = 4,
ENABLED_DATAMATCH_101 = 5,
ENABLED_DATAMATCH_110 = 6,
ENABLED_DATAMATCH_111 = 7,
}Variants§
DISABLED = 0
Match is disabled.
_RESERVED_1 = 1
ENABLED_FIRSTDATAMATCH = 2
Match is enabled is 1st data word is MATCH0 or MATCH1.
ENABLED_ANYDATAMATCH = 3
Match is enabled on any data word equal MATCH0 or MATCH1.
ENABLED_DATAMATCH_100 = 4
Match is enabled on data match sequence.
ENABLED_DATAMATCH_101 = 5
Match is enabled on data match sequence.
ENABLED_DATAMATCH_110 = 6
Match is enabled.
ENABLED_DATAMATCH_111 = 7
Match is enabled.
Implementations§
Trait Implementations§
Source§impl Ord for Matcfg
impl Ord for Matcfg
Source§impl PartialOrd for Matcfg
impl PartialOrd for Matcfg
impl Copy for Matcfg
impl Eq 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