[][src]Struct simple_tones::NotePitch

pub struct NotePitch { /* fields omitted */ }

Represents the pitch of a note as defined here.

Implementations

impl NotePitch[src]

pub fn new(typ: NoteType, n: i32) -> Self[src]

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

Converts this NotePitch to its frequency according to the list of piano key frequencies.

Example

use simple_tones::NotePitch;

let note_pitch: NotePitch = "A4".parse().unwrap();
assert_eq!(note_pitch.frequency(), 440);

Trait Implementations

impl Debug for NotePitch[src]

impl FromStr for NotePitch[src]

type Err = ParseNotePitchError

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.