[][src]Enum nrf52::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 Debug for POLARITYR[src]

impl PartialEq<POLARITYR> for POLARITYR[src]

impl Copy for POLARITYR[src]

impl StructuralPartialEq for POLARITYR[src]

impl Clone for POLARITYR[src]

Auto Trait Implementations

impl Unpin for POLARITYR

impl Send for POLARITYR

impl Sync for POLARITYR

Blanket Implementations

impl<T> From<T> for T[src]

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

type Error = !

The type returned in the event of a conversion error.

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

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self