pub trait ToScale {
    // Required method
    fn to_scale(self, note: Note) -> Scale;
}
Expand description

Convert to Scale.

Required Methods§

source

fn to_scale(self, note: Note) -> Scale

Take self and return Scale. Note is either the root of the scale or the octave.

Implementors§

source§

impl<T: AsScale> ToScale for T