pub trait PclkId: Sealed {
const DYN: DynPclkId;
}
Expand description
Type-level enum identifying one of the 48 possible Pclk
s
The types implementing this trait, e.g. Sercom0
or DfllId
, are
type-level variants of PclkId
, and they identify one of the 48 possible
peripheral channel clocks.
PclkId
is the type-level equivalent of DynPclkId
. See the
documentation on type-level programming and specifically
type-level enums for more details.
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.