Enum xio_webapi::JobEvent[][src]

pub enum JobEvent {
    Started {
        job: String,
        tags: BTreeMap<String, Vec<String>>,
    },
    Data {
        tag: String,
        values: Vec<DataValueDescriptive>,
    },
    Position {
        command: u16,
        caption: String,
    },
    Stopped {
        details: JobStoppedReason,
    },
}

Variants

Fields of Started

Fields of Data

Fields of Position

Fields of Stopped

Trait Implementations

impl Clone for JobEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for JobEvent
[src]

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

This method tests for !=.

impl Eq for JobEvent
[src]

Auto Trait Implementations

impl Send for JobEvent

impl Sync for JobEvent