Trait music_theory::theory::traits::ToScaleTry

source ·
pub trait ToScaleTry {
    // Required method
    fn to_scale_try(self, note: Note) -> Option<Scale>;
}
Expand description

Try to convert to Scale.

Required Methods§

source

fn to_scale_try(self, note: Note) -> Option<Scale>

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

Implementors§