pub trait GpiotePin: GpioPin + SealedGpiotePin {
type Instance: GpioteInstance;
}Expand description
Represents a GPIO pin that can be used with GPIOTE.
Required Associated Types§
Sourcetype Instance: GpioteInstance
type Instance: GpioteInstance
The GPIOTE instance this pin belongs to.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".