Trait IntoPitch

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

A trait for converting a type into a Pitch instance.

Required Methods§

Implementors§

Source§

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