IntoPitch

Trait IntoPitch 

Source
pub trait IntoPitch<T>
where T: RawPitch,
{ // Required method fn into_pitch(self) -> Pitch<T>; }
Expand description

IntoPitch defines a consuming conversion from some type into a Pitch.

Required Methods§

Source

fn into_pitch(self) -> Pitch<T>

Implementors§

Source§

impl<U, T> IntoPitch<T> for U
where U: Into<Pitch<T>>, T: RawPitch,