pub struct HardwareTarget {
    pub id: String,
    pub description: HardwareBoardDescription,
    pub modules: BTreeMap<String, Module>,
    pub instructions: InstructionMap,
}
Expand description

A XIO hardware target for which a jobset gets compiled.

Fields

id: String

The id of the device.

description: HardwareBoardDescription

The description of the device.

modules: BTreeMap<String, Module>

The modules description of the device.

instructions: InstructionMap

The instruction set which is used for compilation.

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.