Enum xio_webapi::JobStoppedReason[][src]

pub enum JobStoppedReason {
    Finished,
    StoppedByUser,
    ExitCriterionMatched {
        command: PositionWithCaption,
        condition: PositionWithCaption,
    },
    Failed {
        error: ErrorCode,
    },
}

Variants

Fields of ExitCriterionMatched

Fields of Failed

Trait Implementations

impl Clone for JobStoppedReason
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobStoppedReason
[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations