pub trait ToFrequency { // Required methods fn hz(self) -> Frequency; fn mhz(self) -> Frequency; fn ghz(self) -> Frequency; }