pub struct CompiledJobSet {
    pub parameters: CompiledParameterSet,
    pub job_mapping: BidirMap<String, u16>,
    pub jobs: BTreeMap<String, Vec<u16>>,
}
Expand description

A compiled jobset which can be deployed to a XIO device.

Fields

parameters: CompiledParameterSet

The parameters of the jobset.

job_mapping: BidirMap<String, u16>

The job index mapping (which job gets placed at which index).

jobs: BTreeMap<String, Vec<u16>>

The jobs compiled to XIO job commands.

Implementations

Build a vector of XIO job commands.

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.