Enum rust_rocket::client::Event [] [src]

pub enum Event {
    SetRow(u32),
    Pause(bool),
    SaveTracks,
}

The Event Type. These are the various events from the tracker.

Variants

The tracker changes row.

The tracker pauses or unpauses.

The tracker asks us to save our track data.

Trait Implementations

impl Debug for Event
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for Event
[src]

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Event

impl Sync for Event