Trait biquad::frequency::ToHertz[][src]

pub trait ToHertz<T> {
    fn hz(self) -> Hertz<T>;
fn khz(self) -> Hertz<T>;
fn mhz(self) -> Hertz<T>;
fn dt(self) -> Hertz<T>; }

Used to implement conversions to the Hertz struct

Required methods

fn hz(self) -> Hertz<T>[src]

From hertz

fn khz(self) -> Hertz<T>[src]

From kilohertz

fn mhz(self) -> Hertz<T>[src]

From megahertz

fn dt(self) -> Hertz<T>[src]

From delta time (in seconds)

Loading content...

Implementors

impl ToHertz<f32> for f32[src]

impl ToHertz<f32> for i32[src]

impl ToHertz<f32> for u32[src]

impl ToHertz<f64> for f32[src]

impl ToHertz<f64> for f64[src]

impl ToHertz<f64> for i32[src]

impl ToHertz<f64> for u32[src]

Loading content...