IntoOctave

Trait IntoOctave 

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

A trait for converting a type into an Octave.

Required Methods§

Source

fn into_octave(self) -> Octave<T>

Implementors§

Source§

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