pub type Pin = u32;Expand description
Represents a GPIO pin identifier.
The interpretation of this identifier is implementation-specific.
For example, it could be a simple number (0-15) for a single port,
or a value like (port << 4) | pin for multiple ports.