Trait kernel::hil::gpio::Pin

source ·
pub trait Pin: Input + Output + Configure { }
Expand description

The Pin trait allows a pin to be used as either input or output and to be configured.

Implementors§

source§

impl<T: Input + Output + Configure> Pin for T