[][src]Struct monotron_app::Frequency

pub struct Frequency(_);

A frequency we can give to the synthesiser.

Methods

impl Frequency[src]

pub fn as_centi_hz(&self) -> u32[src]

Convert a Frequency into centi-hz (i.e. 1 kHz is 100_000).

pub fn as_hz(&self) -> u32[src]

Convert a Frequency into Hz (i.e. 1 kHz is 1000).

pub fn from_hz(hz: u16) -> Frequency[src]

Convert a number of Hz into a Frequency.

pub fn from_centi_hz(centi_hz: u32) -> Frequency[src]

Convert a number of centi-Hz into a Frequency.

Trait Implementations

impl Copy for Frequency[src]

impl Clone for Frequency[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Into<Frequency> for Note[src]

impl Debug for Frequency[src]

Auto Trait Implementations

impl Send for Frequency

impl Sync for Frequency

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]