pub trait IntoPitch { // Required method fn into_pitch(self) -> Pitch; }
A trait for converting a type into a Pitch instance.