Struct xio_instructionset::Instruction[][src]

pub struct Instruction {
    pub code: u16,
    pub description: String,
    pub formatstring: String,
    pub parameters: Vec<InstructionParameter>,
}

Description of an instruction type.

Fields

The instruction code.

The description of the instruction.

The format string in Qt format syntax.

The Qt string formatting replaces %1, %2, …, %99 in the provided order. See http://doc.qt.io/qt-5/qstring.html#arg

The parameters which are required for the instruction.

Methods

impl Instruction
[src]

Get the category of an instruction.

Trait Implementations

impl Clone for Instruction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Instruction
[src]

Formats the value using the given formatter. Read more

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

impl Send for Instruction

impl Sync for Instruction