pub trait IntoPitch<T>where T: RawPitch,{ // Required method fn into_pitch(self) -> Pitch<T>; }
IntoPitch defines a consuming conversion from some type into a Pitch.
IntoPitch
Pitch