#[repr(u8)]pub enum Cksel {
Show 16 variants
INPUT_0_RISING_EDGES = 0,
INPUT_0_FALLING_EDGE = 1,
INPUT_1_RISING_EDGES = 2,
INPUT_1_FALLING_EDGE = 3,
INPUT_2_RISING_EDGES = 4,
INPUT_2_FALLING_EDGE = 5,
INPUT_3_RISING_EDGES = 6,
INPUT_3_FALLING_EDGE = 7,
INPUT_4_RISING_EDGES = 8,
INPUT_4_FALLING_EDGE = 9,
INPUT_5_RISING_EDGES = 10,
INPUT_5_FALLING_EDGE = 11,
INPUT_6_RISING_EDGES = 12,
INPUT_6_FALLING_EDGE = 13,
INPUT_7_RISING_EDGES = 14,
INPUT_7_FALLING_EDGE = 15,
}Variants§
INPUT_0_RISING_EDGES = 0
Rising edges on input 0.
INPUT_0_FALLING_EDGE = 1
Falling edges on input 0.
INPUT_1_RISING_EDGES = 2
Rising edges on input 1.
INPUT_1_FALLING_EDGE = 3
Falling edges on input 1.
INPUT_2_RISING_EDGES = 4
Rising edges on input 2.
INPUT_2_FALLING_EDGE = 5
Falling edges on input 2.
INPUT_3_RISING_EDGES = 6
Rising edges on input 3.
INPUT_3_FALLING_EDGE = 7
Falling edges on input 3.
INPUT_4_RISING_EDGES = 8
Rising edges on input 4.
INPUT_4_FALLING_EDGE = 9
Falling edges on input 4.
INPUT_5_RISING_EDGES = 10
Rising edges on input 5.
INPUT_5_FALLING_EDGE = 11
Falling edges on input 5.
INPUT_6_RISING_EDGES = 12
Rising edges on input 6.
INPUT_6_FALLING_EDGE = 13
Falling edges on input 6.
INPUT_7_RISING_EDGES = 14
Rising edges on input 7.
INPUT_7_FALLING_EDGE = 15
Falling edges on input 7.
Implementations§
Trait Implementations§
Source§impl Ord for Cksel
impl Ord for Cksel
Source§impl PartialOrd for Cksel
impl PartialOrd for Cksel
impl Copy for Cksel
impl Eq for Cksel
impl StructuralPartialEq for Cksel
Auto Trait Implementations§
impl Freeze for Cksel
impl RefUnwindSafe for Cksel
impl Send for Cksel
impl Sync for Cksel
impl Unpin for Cksel
impl UnwindSafe for Cksel
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