[][src]Struct xio_jobset_compilation::CompiledJobSet

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

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: IndexMap<String, Vec<u16>>

The jobs compiled to XIO job commands.

Methods

impl CompiledJobSet[src]

pub fn build_jobs(&self) -> Result<Vec<Vec<u16>>, Error>[src]

Build a vector of XIO job commands.

Trait Implementations

impl Debug for CompiledJobSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err