1 2 3 4 5 6 7 8
use embedded_hal::digital::InputPin; pub struct Button<PIN> where PIN: InputPin, { pub pin: PIN, }