Trait kernel::hil::gpio::InterruptPin

source ·
pub trait InterruptPin<'a>: Pin + Interrupt<'a> { }
Expand description

The InterruptPin trait allows a pin to be used as either input or output and also to source interrupts.

Implementors§

source§

impl<'a, T: Pin + Interrupt<'a>> InterruptPin<'a> for T