Trait embassy_traits::gpio::WaitForRisingEdge[][src]

pub trait WaitForRisingEdge {
    type Future: Future<Output = ()> + 'a;
    fn wait_for_rising_edge<'a>(&'a mut self) -> Self::Future;
}

Wait for a rising edge (transition from low to high)

Associated Types

type Future: Future<Output = ()> + 'a[src]

Loading content...

Required methods

fn wait_for_rising_edge<'a>(&'a mut self) -> Self::Future[src]

Wait for a rising edge (transition from low to high)

Loading content...

Implementors

Loading content...