Trait CastEventDelta

Source
pub trait CastEventDelta<DT: MIDINum> {
    type Output;

    // Required method
    fn cast_delta(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn cast_delta(self) -> Self::Output

Implementors§

Source§

impl<D: MIDINum + MIDINumInto<ND>, ND: MIDINum, E> CastEventDelta<ND> for Delta<D, E>

Source§

type Output = Delta<ND, E>