AsOctave

Trait AsOctave 

Source
pub trait AsOctave {
    // Required method
    fn as_octave(&self) -> Octave;
}
Expand description

A trait for converting a reference into an Octave.

Required Methods§

Source

fn as_octave(&self) -> Octave

Implementors§

Source§

impl<T> AsOctave for T
where T: Clone + IntoOctave,