pub trait PinId: Sealed {
const DYN: DynPinId;
}
Expand description
Type-level enum for pin IDs
Valid options take the form PXYY
, where X
is a letter in A
-D
and
YY
is a number between 00-31. See the type-level enum documentation for
more details on the pattern.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.