pub trait ISizeBitrateExt<T> {
// Required methods
fn bps(self) -> Bps<T>;
fn hz(self) -> Hertz<T>;
fn khz(self) -> KiloHertz<T>;
fn mhz(self) -> MegaHertz<T>;
}Expand description
Extension trait that adds convenience methods to the isize type.