pub struct CompiledParameterSet {
    pub parameter_mapping: BidirMap<String, u16>,
    pub parameters: BTreeMap<String, ParameterValueRaw>,
    pub runtime_parameters: BTreeMap<String, DataValueRaw>,
    pub assigned_capabilities: BTreeSet<String>,
}
Expand description

A compiled parameter set to be used in a XIO jobset.

Fields

parameter_mapping: BidirMap<String, u16>

The parameter index mapping (index where parameters are stored).

parameters: BTreeMap<String, ParameterValueRaw>

The statically assigned parameter values.

runtime_parameters: BTreeMap<String, DataValueRaw>

The parameter values that get set before jobs are run.

assigned_capabilities: BTreeSet<String>

The XIO capabilities which are assigned to this job.

Implementations

Build a vector of all static parameter values.

Build map of all parameters that get set before jobs are run.

Trait Implementations

Formats the value using the given formatter. 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 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.