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
StartedFields of Started
                           | job: String | |
DataFields of Data
                           | tag: String | |
| values: Vec<DataValueDescriptive> | 
PositionFields of Position
                           | command: u16 | |
| caption: String | 
StoppedFields of Stopped
                           | details: JobStoppedReason | 
Trait Implementations
impl Clone for JobEvent[src] 
impl Clone for JobEventfn clone(&self) -> JobEvent[src] 
fn clone(&self) -> JobEventReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for JobEvent[src] 
impl Debug for JobEventfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for JobEvent[src] 
impl PartialEq for JobEventfn eq(&self, other: &JobEvent) -> bool[src] 
fn eq(&self, other: &JobEvent) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &JobEvent) -> bool[src] 
fn ne(&self, other: &JobEvent) -> boolThis method tests for !=.
impl Eq for JobEvent[src] 
impl Eq for JobEvent