#[repr(u8)]pub enum Selcc {
CHANNEL_0_RISING = 0,
CHANNEL_0_FALLING = 1,
CHANNEL_1_RISING = 2,
CHANNEL_1_FALLING = 3,
CHANNEL_2_RISING = 4,
CHANNEL_2_FALLING = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}Variants§
CHANNEL_0_RISING = 0
Capture channel 0 rising edge
CHANNEL_0_FALLING = 1
Capture channel 0 falling edge
CHANNEL_1_RISING = 2
Capture channel 1 rising edge
CHANNEL_1_FALLING = 3
Capture channel 1 falling edge
CHANNEL_2_RISING = 4
Capture channel 2 rising edge
CHANNEL_2_FALLING = 5
Capture channel 2 falling edge
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
Source§impl Ord for Selcc
impl Ord for Selcc
Source§impl PartialOrd for Selcc
impl PartialOrd for Selcc
impl Copy for Selcc
impl Eq for Selcc
impl StructuralPartialEq for Selcc
Auto Trait Implementations§
impl Freeze for Selcc
impl RefUnwindSafe for Selcc
impl Send for Selcc
impl Sync for Selcc
impl Unpin for Selcc
impl UnwindSafe for Selcc
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