#[repr(u8)]pub enum EXTEN {
Disabled = 0,
RisingEdge = 1,
FallingEdge = 2,
BothEdges = 3,
}
Expand description
External trigger enable for regular channels
Value on reset: 0
Variants§
Disabled = 0
0: Trigger detection disabled
RisingEdge = 1
1: Trigger detection on the rising edge
FallingEdge = 2
2: Trigger detection on the falling edge
BothEdges = 3
3: Trigger detection on both the rising and falling edges
Trait Implementations§
impl Copy for EXTEN
impl Eq for EXTEN
impl IsEnum for EXTEN
impl StructuralPartialEq for EXTEN
Auto Trait Implementations§
impl Freeze for EXTEN
impl RefUnwindSafe for EXTEN
impl Send for EXTEN
impl Sync for EXTEN
impl Unpin for EXTEN
impl UnwindSafe for EXTEN
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