AsOctave

Trait AsOctave 

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

A trait for converting a reference into an Octave.

Required Methods§

Source

fn as_octave(&self) -> Octave<T>

Implementors§

Source§

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