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

Convert to Scale.

Required Methods§

source

fn as_scale(&self, note: Note) -> Scale

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

Implementors§