IntoPitch

Trait IntoPitch 

Source
pub trait IntoPitch {
    // Required method
    fn into_pitch(self) -> Pitch;
}
Expand description

A trait for converting a type into a Pitch.

Required Methods§

Implementors§

Source§

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