Struct xio_jobset::HardwareAssignment[][src]

pub struct HardwareAssignment {
    pub hardware_board: String,
    pub mapping: BTreeMap<String, ChannelAssignment>,
}

The assignment of variables mapped to a hardware board

Fields

The hardware board identifier as defined in the XIO hwdb.

The mapping of channel parameters to the XIO hardware channels.

The keys are the same as the keys used in the parameter set layers.

Trait Implementations

impl Clone for HardwareAssignment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HardwareAssignment
[src]

Formats the value using the given formatter. Read more

impl Default for HardwareAssignment
[src]

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

impl Eq for HardwareAssignment
[src]

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