pub unsafe trait HrtimPrescaler: Default {
const BITS: u8;
const VALUE: u8;
const MIN_CR: u16;
const MAX_CR: u16;
}
Expand description
§Safety
Only implement for valid prescalers with correct values
Required Associated Constants§
const BITS: u8
const VALUE: u8
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.