Enum xio_webapi::JobControlAction[][src]

pub enum JobControlAction {
    StartJob {
        job: String,
    },
    StopJob,
}

Actions for controlling the job execution.

Variants

Start a job.

Fields of StartJob

The identifier string of the job.

The job must be deployed on the board already in order to be started.

Stop the currently running job.

Trait Implementations

impl Clone for JobControlAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobControlAction
[src]

Formats the value using the given formatter. Read more

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

impl Default for JobControlAction
[src]

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

impl MustNotBeSkipped for JobControlAction
[src]

Auto Trait Implementations