pub struct Step {
Show 14 fields pub icon: Icon, pub id: u32, pub label: String, pub name: String, pub parameters: Vec<Parameter>, pub mode: StepMode, pub multiple_jobs: Option<String>, pub condition: Option<String>, pub skip_destination_path: bool, pub parent_ids: Vec<u32>, pub required_to_start: Vec<u32>, pub work_dir: Option<String>, pub jobs: Option<JobsStatus>, pub coordinates: Option<Coordinates>,
}
Expand description

Definition of a step

Fields

icon: Icon

The icon for this step

id: u32

Unique identifier of this step in a workflow

label: String

Displayed name of this step

name: String

Queue name for this step, it select the worker

parameters: Vec<Parameter>

List of all parameters for this step

mode: StepMode

Mode for this step

multiple_jobs: Option<String>

Name of the variable which contain data ranges to process splitted media by part

condition: Option<String>

Expression which requires to return a boolean. On false condition, the step will be skipped.

skip_destination_path: bool

Skip generation of a destination path parameter, it requires to add it in parameters

parent_ids: Vec<u32>

Reference(s) of parent steps It is used to generate the input paths list from all parents destination paths

required_to_start: Vec<u32>

Reference(s) of required steps to start the process of that step

work_dir: Option<String>

Overwrite the default workdir for this step

jobs: Option<JobsStatus>

Jobs status for this step

coordinates: Option<Coordinates>

Coordinates for this step

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
The name of the generated JSON Schema. Read more
Generates a JSON Schema for this type. Read more
Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.