#[repr(u8)]pub enum Im1 {
DISABLED = 0,
RISING = 1,
FALLING = 2,
BOTH = 3,
}Variants§
DISABLED = 0
Capture disabled.
RISING = 1
Capture on rising edge only.
FALLING = 2
Capture on falling edge only.
BOTH = 3
Capture on both edges.
Implementations§
Trait Implementations§
Source§impl Ord for Im1
impl Ord for Im1
Source§impl PartialOrd for Im1
impl PartialOrd for Im1
impl Copy for Im1
impl Eq for Im1
impl StructuralPartialEq for Im1
Auto Trait Implementations§
impl Freeze for Im1
impl RefUnwindSafe for Im1
impl Send for Im1
impl Sync for Im1
impl Unpin for Im1
impl UnwindSafe for Im1
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