Struct xio_jobset::ParameterSet[][src]

pub struct ParameterSet {
    pub name: String,
    pub descriptions: BTreeMap<String, ParameterDescription>,
    pub values: BTreeMap<String, DataValueDescriptive>,
}

A set of parameters (a.k.a. parameter layer).

Fields

The name of the parameter set.

The descriptions of the parameters.

The concrete values of the parameters.

Trait Implementations

impl Clone for ParameterSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParameterSet
[src]

Formats the value using the given formatter. Read more

impl Default for ParameterSet
[src]

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

impl Eq for ParameterSet
[src]

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