IntoOctave

Trait IntoOctave 

Source
pub trait IntoOctave {
    // Required method
    fn into_octave(self) -> Octave;
}
Expand description

A trait for converting a type into an Octave.

Required Methods§

Implementors§

Source§

impl<T> IntoOctave for T
where T: Into<Octave>,