pub trait ToSteps {
    // Required method
    fn to_steps(self, complete_octave_cycle: bool) -> Steps;
}
Expand description

Convert to Steps.

Required Methods§

source

fn to_steps(self, complete_octave_cycle: bool) -> Steps

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

Implementors§

source§

impl<T: AsSteps> ToSteps for T