pub trait ToStepsTry {
    // Required method
    fn to_steps_try(self, complete_octave_cycle: bool) -> Option<Steps>;
}
Expand description

Try convert to Steps.

Required Methods§

source

fn to_steps_try(self, complete_octave_cycle: bool) -> Option<Steps>

Take self and try to return Steps. complete_octave_cycle instructs whether the steps should wrap around the starting note to complete the octave.

Implementors§