pub trait IntoOctave<T> {
// Required method
fn into_octave(self) -> Octave<T>;
}Expand description
A trait for converting a type into an Octave.
pub trait IntoOctave<T> {
// Required method
fn into_octave(self) -> Octave<T>;
}A trait for converting a type into an Octave.