pub trait PllConstants {
const MIN_FREQ_MHZ: usize;
const MAX_FREQ_MHZ: usize = 216usize;
}
Expand description
PLL-related constants for specific for a specific chip
Required Associated Constants§
Sourceconst MIN_FREQ_MHZ: usize
const MIN_FREQ_MHZ: usize
PLL minimum frequency in MHz
Provided Associated Constants§
Sourceconst MAX_FREQ_MHZ: usize = 216usize
const MAX_FREQ_MHZ: usize = 216usize
PLL maximum frequency in MHz
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.