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

pub trait WaitForFallingEdge {
    type Future: Future<Output = ()> + 'a;
    fn wait_for_falling_edge<'a>(&'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>(&'a mut self) -> Self::Future[src]

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

Loading content...

Implementors

Loading content...