Enum xio_webapi::ControllerState[][src]

pub enum ControllerState {
    Uninitialized,
    UnsupportedFrameFormatVersion {
        required: u8,
        found: Option<u8>,
    },
    UnsupportedCommandSetVersion {
        required: u16,
        found: Option<u16>,
    },
    Ready,
    JobSetDeployed {
        deployed_jobs: BTreeSet<String>,
    },
    JobRunning {
        deployed_jobs: BTreeSet<String>,
        running: String,
    },
}

Variants

Fields of UnsupportedFrameFormatVersion

Fields of UnsupportedCommandSetVersion

Fields of JobSetDeployed

Fields of JobRunning

Trait Implementations

impl Clone for ControllerState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ControllerState
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ControllerState
[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 ControllerState
[src]

impl ToString for ControllerState
[src]

Converts the given value to a String. Read more

Auto Trait Implementations