pub trait ToIonianRelativeStringTry {
    // Required method
    fn to_ionian_relative_string_try(self, nonnat: bool) -> Option<String>;
}
Expand description

Try to convert to an Ionian relative string. For example the Ionian relative string of Phrygian is 1 ♭2, ♭3, 4, 5, ♭6, ♭7.

Required Methods§

source

fn to_ionian_relative_string_try(self, nonnat: bool) -> Option<String>

Take self and try to return a Ionian relative string. nonnat determines if natural intervals have the natural ‘♮’ accidental prefixed.

Implementors§