Enum nannou_timeline::track::automation::DynamicEnvelope[][src]

pub enum DynamicEnvelope {
    Bang(Envelope<Bang>),
    Toggle(Envelope<Toggle>),
    I8(Envelope<i8>),
    I16(Envelope<i16>),
    I32(Envelope<i32>),
    I64(Envelope<i64>),
    U8(Envelope<u8>),
    U16(Envelope<u16>),
    U32(Envelope<u32>),
    U64(Envelope<u64>),
    F32(Envelope<f32>),
    F64(Envelope<f64>),
}
Expand description

A wrapper around the various kinds of bounded automation envelopes.

Variants

Bang(Envelope<Bang>)

Tuple Fields of Bang

0: Envelope<Bang>
Toggle(Envelope<Toggle>)

Tuple Fields of Toggle

0: Envelope<Toggle>

Tuple Fields of I8

0: Envelope<i8>

Tuple Fields of I16

0: Envelope<i16>

Tuple Fields of I32

0: Envelope<i32>

Tuple Fields of I64

0: Envelope<i64>

Tuple Fields of U8

0: Envelope<u8>

Tuple Fields of U16

0: Envelope<u16>

Tuple Fields of U32

0: Envelope<u32>

Tuple Fields of U64

0: Envelope<u64>

Tuple Fields of F32

0: Envelope<f32>

Tuple Fields of F64

0: Envelope<f64>

Implementations

Return the parameter value for the automation envelope at the given time in ticks.

Construct a bounded dynamic envelope from the given typed bounded envelope.

Construct a bounded dynamic envelope from the given points.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.