Struct xio_webapi::ControllerStatus[][src]

pub struct ControllerStatus {
    pub uuid: Uuid,
    pub model: String,
    pub commandset_version: Option<u16>,
    pub frame_format_version: Option<u8>,
    pub firmware_version: Option<String>,
    pub manufacturer: Option<String>,
    pub state: ControllerState,
    pub job_set: Option<JobSet>,
    pub modules: BTreeMap<String, ModuleState>,
}

Fields

Methods

impl ControllerStatus
[src]

Trait Implementations

impl Clone for ControllerStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ControllerStatus
[src]

Formats the value using the given formatter. Read more

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

impl MustNotBeSkipped for ControllerStatus
[src]

Auto Trait Implementations