Enum Adc4Exten
#[repr(u8)]pub enum Adc4Exten {
DISABLED = 0,
RISING_EDGE = 1,
FALLING_EDGE = 2,
BOTH_EDGES = 3,
}
Variants§
DISABLED = 0
Trigger detection disabled
RISING_EDGE = 1
Trigger detection on the rising edge
FALLING_EDGE = 2
Trigger detection on the falling edge
BOTH_EDGES = 3
Trigger detection on both the rising and falling edges
Implementations§
Trait Implementations§
§impl Ord for Adc4Exten
impl Ord for Adc4Exten
§impl PartialOrd for Adc4Exten
impl PartialOrd for Adc4Exten
impl Copy for Adc4Exten
impl Eq for Adc4Exten
impl StructuralPartialEq for Adc4Exten
Auto Trait Implementations§
impl Freeze for Adc4Exten
impl RefUnwindSafe for Adc4Exten
impl Send for Adc4Exten
impl Sync for Adc4Exten
impl Unpin for Adc4Exten
impl UnwindSafe for Adc4Exten
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