Struct xio_jobset::JobSet[][src]

pub struct JobSet {
    pub parameters: Vec<ParameterSet>,
    pub jobs: BTreeMap<String, Job>,
    pub channels: BTreeMap<String, ChannelAssignment>,
}

A complete job set.

Fields

The parameter layers.

The ParameterSet items get applied in the order in which they are stored in the vector. This means values stored in the ParameterSet at index 0 would be overridden by values stored in the ParameterSet at index 2 for example.

The jobs contained in the set.

The channel mappings for parameters stored to channels.

Trait Implementations

impl ExtractCaptions for JobSet
[src]

The type of the extracted captions.

In this method, the extraction is being processed.

impl Clone for JobSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobSet
[src]

Formats the value using the given formatter. Read more

impl Default for JobSet
[src]

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

impl Eq for JobSet
[src]

impl PartialEq for JobSet
[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 JobSet

impl Sync for JobSet