pub trait GclkId: Sealed {
type Divider: GclkDivider;
const DYN: DynGclkId;
const NUM: usize;
}
Expand description
Type-level enum identifying one of 12 possible Gclk
s
The types implementing this trait, i.e. Gclk0Id
- Gclk11Id
, are
type-level variants of GclkId
, and they identify one of the 12 possible
generic clock generators.
GclkId
is the type-level equivalent of DynGclkId
. See the
documentation on type-level programming and specifically
type-level enums for more details.
Required Associated Constants§
Required Associated Types§
Sourcetype Divider: GclkDivider
type Divider: GclkDivider
Corresponding GclkDivider
type
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.