Type Definition stm32f3xx_hal::gpio::PXx [−][src]
pub type PXx<Mode> = Pin<Gpiox, Ux, Mode>;
Expand description
Fully erased pin
This moves the pin type information to be known at runtime, and erases the specific compile time type of the GPIO. The only compile time information of the GPIO pin is it’s Mode.
See examples/gpio_erased.rs as an example.