kernel::hil::gpio

Trait 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