pub trait CanReduceFrame {
    fn reduce_frame(self) -> Self;
}
Expand description

A trait for types that can be “reduced” to a single “frame” (usually an interval, and usually within an octave).

Required Methods§

Returns the reduced frame of the type.

Implementors§