1//! A module that contains common code related to the frequency functionality. 2 3/// Trait for types that can provide a frequency in Hz (f32). 4pub trait ToFrequency { 5 fn to_hz(&self) -> f32; 6}