pub trait AsOctave<T> { // Required method fn as_octave(&self) -> Octave<T>; }
A trait for converting a reference into an Octave.
Octave