pub trait AsPitch<T>where T: RawPitch,{ // Required method fn as_pitch(&self) -> Pitch<T>; }
A trait for converting a reference into a Pitch.
Pitch