Struct xio_jobset::Command[][src]

pub struct Command {
    pub caption: String,
    pub command_type: String,
    pub parameters: BTreeMap<String, String>,
    pub conditions: Vec<Condition>,
}

A command which can be executed in a job.

Fields

The caption of the command.

The command type.

This identifies a command by it's string id which needs to be defined in the XIO commandset that gets used for compilation.

The parameter assignments.

The keys are the parameter string identifiers as defined in the XIO commandset definition for the command. The values reference the string identifier of the definition in the ParameterSet layers of the job set.

The conditions required for the command to continue running.

This can only be applied to commands that have a temporal extent (e.g. wait, but not the setValue or startMeasurementDataTransfer).

Trait Implementations

impl ExtractCaptions for Command
[src]

The type of the extracted captions.

In this method, the extraction is being processed.

impl Clone for Command
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Command
[src]

Formats the value using the given formatter. Read more

impl Default for Command
[src]

Returns the "default value" for a type. Read more

impl Eq for Command
[src]

impl PartialEq for Command
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Command

impl Sync for Command