[][src]Enum nrf52832_hal::target::gpiote::config::POLARITYR

pub enum POLARITYR {
    NONE,
    LOTOHI,
    HITOLO,
    TOGGLE,
}

Possible values of the field POLARITY

Variants

NONE

Task mode: No effect on pin from OUT[n] task. Event mode: no IN[n] event generated on pin activity.

LOTOHI

Task mode: Set pin from OUT[n] task. Event mode: Generate IN[n] event when rising edge on pin.

HITOLO

Task mode: Clear pin from OUT[n] task. Event mode: Generate IN[n] event when falling edge on pin.

TOGGLE

Task mode: Toggle pin from OUT[n]. Event mode: Generate IN[n] when any change on pin.

Methods

impl POLARITYR[src]

pub fn bits(&self) -> u8[src]

Value of the field as raw bits

pub fn is_none(&self) -> bool[src]

Checks if the value of the field is NONE

pub fn is_lo_to_hi(&self) -> bool[src]

Checks if the value of the field is LOTOHI

pub fn is_hi_to_lo(&self) -> bool[src]

Checks if the value of the field is HITOLO

pub fn is_toggle(&self) -> bool[src]

Checks if the value of the field is TOGGLE

Trait Implementations

impl PartialEq<POLARITYR> for POLARITYR[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for POLARITYR[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for POLARITYR[src]

impl Debug for POLARITYR[src]

Auto Trait Implementations

impl Send for POLARITYR

impl Sync for POLARITYR

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self