Enum ittech::Portamento[][src]

pub enum Portamento {
    Coarse(RangedU8<1, 0xDF>),
    Fine(RangedU8<0, 0x0F>),
    ExtraFine(RangedU8<0, 0x0F>),
}

Effects Exx, Fxx

Portamento down or up in coarse, fine or extra fine steps.

Slide can be either smooth or semitone-wise, see Special::SetGlissando for details.

Variants

Coarse(RangedU8<1, 0xDF>)

Exx, Fxx Pitch slide down/up by xx

Decreases/increases current note pitch by xx units on every tick of the row except the first.

Fine(RangedU8<0, 0x0F>)

EFx, FFx Fine pitch slide down/up by x

Finely decreases/increases note pitch by only applying x units on the first tick of the row.

ExtraFine(RangedU8<0, 0x0F>)

EEx, FEx Extra fine pitch slide down/up by x

Extra-finely decreases/increases note pitch by applying with 4 times the precision of EFx/FFx (Portamento::Fine).

Trait Implementations

impl Clone for Portamento[src]

impl Copy for Portamento[src]

impl Debug for Portamento[src]

impl PartialEq<Portamento> for Portamento[src]

impl StructuralPartialEq for Portamento[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.