Enum instrument::NoteState [] [src]

pub enum NoteState {
    Playing,
    Released(Playhead),
}

The current state of the Voice's note playback.

Variants

The note is current playing.

The note has been released and is fading out.

Trait Implementations

impl Copy for NoteState
[src]

impl Clone for NoteState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NoteState
[src]

Formats the value using the given formatter.

impl PartialEq for NoteState
[src]

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

This method tests for !=.