[][src]Struct xio_jobset::JobSet

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

A complete job set.

Fields

metadata: Metadata

Metadata for this job set.

parameters: Vec<ParameterSet>

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.

jobs: IndexMap<String, Job>

The jobs contained in the set.

channels: IndexMap<String, ChannelAssignment>

The channel mappings for parameters stored to channels.

Trait Implementations

impl ExtractDescriptions for JobSet[src]

type Descriptions = IndexMap<String, Vec<CommandDescription>>

The type of the extracted descriptions.

impl Clone for JobSet[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for JobSet[src]

impl PartialEq<JobSet> for JobSet[src]

impl Eq for JobSet[src]

impl Debug for JobSet[src]

impl Serialize for JobSet[src]

impl<'de> Deserialize<'de> for JobSet[src]

Auto Trait Implementations

impl Sync for JobSet

impl Send for JobSet

impl Unpin for JobSet

impl RefUnwindSafe for JobSet

impl UnwindSafe for JobSet

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err