[][src]Struct nrf52832_hal::gpiote::GpioteChannelEvent

pub struct GpioteChannelEvent<'a, P> where
    P: GpioteInputPin
{ /* fields omitted */ }

Implementations

impl<'a, '_, P> GpioteChannelEvent<'_, P> where
    P: GpioteInputPin
[src]

pub fn hi_to_lo(&self) -> &GpioteChannelEvent<'_, P>[src]

Generates event on falling edge

pub fn lo_to_hi(&self) -> &GpioteChannelEvent<'_, P>[src]

Generates event on rising edge

pub fn toggle(&self) -> &GpioteChannelEvent<'_, P>[src]

Generates event on any pin activity

pub fn none(&self) -> &GpioteChannelEvent<'_, P>[src]

No event is generated on pin activity

pub fn enable_interrupt(&self) -> &GpioteChannelEvent<'_, P>[src]

Enables GPIOTE interrupt for pin

pub fn disable_interrupt(&self) -> &GpioteChannelEvent<'_, P>[src]

Disables GPIOTE interrupt for pin

Auto Trait Implementations

impl<'a, P> !Send for GpioteChannelEvent<'a, P>

impl<'a, P> !Sync for GpioteChannelEvent<'a, P>

impl<'a, P> Unpin for GpioteChannelEvent<'a, P>

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

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.