pub trait DpllId: Sealed + PclkId {
const DYN: DynDpllId;
const NUM: usize;
}
Expand description
Type-level enum identifying one of two possible Dpll
s
The types implementing this trait, i.e. Dpll0Id
and Dpll1Id
, are
type-level variants of DpllId
, and they identify one of the two possible
digital phase-locked loops.
DpllId
is the type-level equivalent of DynDpllId
. 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.