#[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 first data word with compare word.
ENABLED_ANYDATAMATCH = 3
Match any data word with compare word.
ENABLED_DATAMATCH_100 = 4
Sequential match, first data word.
ENABLED_DATAMATCH_101 = 5
Sequential match, any data word.
ENABLED_DATAMATCH_110 = 6
Match first data word (masked) with compare word (masked).
ENABLED_DATAMATCH_111 = 7
Match any data word (masked) with compare word (masked).
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