Trait embassy_traits::gpio::WaitForFallingEdge[][src]

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

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

Associated Types

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

Loading content...

Required methods

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

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

Loading content...

Implementors

Loading content...