#[repr(u8)]pub enum Trigpol {
ACTIVE_LOW_FALLING = 0,
ACTIVE_HIGH_RISING = 1,
}Variants§
ACTIVE_LOW_FALLING = 0
Active low - falling edge. Hardware trigger is active low or falling edge triggered, based on TRIGTYPE.
ACTIVE_HIGH_RISING = 1
Active high - rising edge. Hardware trigger is active high or rising edge triggered, based on TRIGTYPE.
Implementations§
Trait Implementations§
Source§impl Ord for Trigpol
impl Ord for Trigpol
Source§impl PartialOrd for Trigpol
impl PartialOrd for Trigpol
impl Copy for Trigpol
impl Eq for Trigpol
impl StructuralPartialEq for Trigpol
Auto Trait Implementations§
impl Freeze for Trigpol
impl RefUnwindSafe for Trigpol
impl Send for Trigpol
impl Sync for Trigpol
impl Unpin for Trigpol
impl UnwindSafe for Trigpol
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