#[repr(u8)]pub enum CSKIP_A {
NO_SKIP = 0,
SKIP_IF_1 = 1,
SKIP_IF_0 = 2,
SET_AND_SKIP = 3,
}Expand description
Skip rules on Carry if needed. This operation will be skipped based on Carry value (from previous operation) if not 0:
Value on reset: 0
Variants§
NO_SKIP = 0
0: No Skip
SKIP_IF_1 = 1
1: Skip if Carry is 1
SKIP_IF_0 = 2
2: Skip if Carry is 0
SET_AND_SKIP = 3
3: Set CTRLOFF to CDOFF and Skip
Trait Implementations§
impl Copy for CSKIP_A
impl StructuralPartialEq for CSKIP_A
Auto Trait Implementations§
impl Freeze for CSKIP_A
impl RefUnwindSafe for CSKIP_A
impl Send for CSKIP_A
impl Sync for CSKIP_A
impl Unpin for CSKIP_A
impl UnwindSafe for CSKIP_A
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