Enum ittech::PanningSlide[][src]

pub enum PanningSlide {
    Right(RangedU8<1, 0x0F>),
    Left(RangedU8<1, 0x0F>),
    FineRight(RangedU8<1, 0x0F>),
    FineLeft(RangedU8<1, 0x0F>),
}

Effect Pxx Panning slide

Slides the current channel's panning position left or right.

Canonicalization

Values where both nibbles are in 1..=0xE at the same time don't have a defined meaning, these get skipped by the parser.

Variants

Right(RangedU8<1, 0x0F>)

P0x Panning slide to right by x

Left(RangedU8<1, 0x0F>)

Px0 Panning slide to left by x

FineRight(RangedU8<1, 0x0F>)

PFx Fine panning slide to right by x

FineLeft(RangedU8<1, 0x0F>)

PxF Fine panning slide to left by x

Trait Implementations

impl Clone for PanningSlide[src]

impl Copy for PanningSlide[src]

impl Debug for PanningSlide[src]

impl PartialEq<PanningSlide> for PanningSlide[src]

impl StructuralPartialEq for PanningSlide[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.