Enum nrf52840_pac::gpiote::config::POLARITY_A
source · #[repr(u8)]pub enum POLARITY_A {
NONE = 0,
LO_TO_HI = 1,
HI_TO_LO = 2,
TOGGLE = 3,
}
Expand description
When In task mode: Operation to be performed on output when OUT[n] task is triggered. When In event mode: Operation on input that shall trigger IN[n] event.
Value on reset: 0
Variants§
NONE = 0
0: Task mode: No effect on pin from OUT[n] task. Event mode: no IN[n] event generated on pin activity.
LO_TO_HI = 1
1: Task mode: Set pin from OUT[n] task. Event mode: Generate IN[n] event when rising edge on pin.
HI_TO_LO = 2
2: Task mode: Clear pin from OUT[n] task. Event mode: Generate IN[n] event when falling edge on pin.
TOGGLE = 3
3: Task mode: Toggle pin from OUT[n]. Event mode: Generate IN[n] when any change on pin.
Trait Implementations§
source§impl Clone for POLARITY_A
impl Clone for POLARITY_A
source§fn clone(&self) -> POLARITY_A
fn clone(&self) -> POLARITY_A
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for POLARITY_A
impl Debug for POLARITY_A
source§impl From<POLARITY_A> for u8
impl From<POLARITY_A> for u8
source§fn from(variant: POLARITY_A) -> Self
fn from(variant: POLARITY_A) -> Self
Converts to this type from the input type.
source§impl PartialEq for POLARITY_A
impl PartialEq for POLARITY_A
impl Copy for POLARITY_A
impl StructuralPartialEq for POLARITY_A
Auto Trait Implementations§
impl Freeze for POLARITY_A
impl RefUnwindSafe for POLARITY_A
impl Send for POLARITY_A
impl Sync for POLARITY_A
impl Unpin for POLARITY_A
impl UnwindSafe for POLARITY_A
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)