pub trait Clock { // Required method fn frequency(&self) -> HertzU32; // Provided methods fn mhz(&self) -> u32 { ... } fn hz(&self) -> u32 { ... } }
Clock properties
Frequency of the clock in Hertz, using fugit types.
Frequency of the clock in Megahertz
Frequency of the clock in Hertz