Enum instrument::mode::Dynamic [] [src]

pub enum Dynamic {
    Mono(Mono),
    Poly(Poly),
}

The mode in which the Synth will handle notes.

Variants

Single voice (normal or legato) with a stack of fallback notes.

Multiple voices.

Methods

impl Dynamic
[src]

Construct a default Retrigger mono mode.

Construct a default Legato mono mode.

Construct a default Poly mode.

Trait Implementations

impl Clone for Dynamic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Dynamic
[src]

Formats the value using the given formatter.

impl PartialEq for Dynamic
[src]

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

This method tests for !=.

impl Mode for Dynamic
[src]

Handle a note_on event.

Handle a note_off event.

Handle a stop event.