pub trait GPIOPin {
    fn group(&self) -> Group;
    fn index(&self) -> u8;
}
Expand description

Marker trait for any pin

Required Methods

Returns GPIO group

Returns pin index within group

Implementors