#[repr(u8)]pub enum Filte1 {
DISABLE = 0,
EN_RISE_HI = 1,
EN_FALL_LO = 2,
EN_ANY = 3,
}Variants§
DISABLE = 0
Disable
EN_RISE_HI = 1
Enable (Detect on rising edge or high level)
EN_FALL_LO = 2
Enable (Detect on falling edge or low level)
EN_ANY = 3
Enable (Detect on any edge)
Implementations§
Trait Implementations§
Source§impl Ord for Filte1
impl Ord for Filte1
Source§impl PartialOrd for Filte1
impl PartialOrd for Filte1
impl Copy for Filte1
impl Eq for Filte1
impl StructuralPartialEq for Filte1
Auto Trait Implementations§
impl Freeze for Filte1
impl RefUnwindSafe for Filte1
impl Send for Filte1
impl Sync for Filte1
impl Unpin for Filte1
impl UnwindSafe for Filte1
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