PitchMod

Trait PitchMod 

Source
pub trait PitchMod {
    type Output;

    // Required method
    fn pmod(self) -> Self::Output;
}
Expand description

The PitchMod trait is a particular implementation of the PyMod trait, specifically binding the caller to a mod 12 space.

Required Associated Types§

Required Methods§

Source

fn pmod(self) -> Self::Output

Implementors§

Source§

impl<A> PitchMod for A
where A: PyMod<Output = A> + FromPrimitive,

Source§

type Output = <A as PyMod>::Output