Enum Bkinp
#[repr(u8)]pub enum Bkinp {
NOTINVERTED = 0,
INVERTED = 1,
}
Variants§
NOTINVERTED = 0
input polarity is not inverted (active low if BKxP = 0, active high if BKxP = 1)
INVERTED = 1
input polarity is inverted (active high if BKxP = 0, active low if BKxP = 1)
Implementations§
Trait Implementations§
§impl Ord for Bkinp
impl Ord for Bkinp
§impl PartialOrd for Bkinp
impl PartialOrd for Bkinp
impl Copy for Bkinp
impl Eq for Bkinp
impl StructuralPartialEq for Bkinp
Auto Trait Implementations§
impl Freeze for Bkinp
impl RefUnwindSafe for Bkinp
impl Send for Bkinp
impl Sync for Bkinp
impl Unpin for Bkinp
impl UnwindSafe for Bkinp
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