pub trait CanReduceFrame {
// Required method
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§
Sourcefn reduce_frame(self) -> Self
fn reduce_frame(self) -> Self
Returns the reduced frame of the type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".