Struct xio_instructionset::InstructionParameter[][src]

pub struct InstructionParameter {
    pub id: String,
    pub group: String,
    pub parameter_type: Vec<DataType>,
    pub storage: StorageTypeWithMixed,
    pub description: String,
}

Description of an instruction parameter type.

Fields

The id string of the parameter.

The group to which the parameter belongs.

If empty, the parameter implicitly has it's own group where it is the only member.

The allowed types of parameters.

Each parameter in a group must have the same type.

The permitted storage type for the parameter.

A human-readable description of the parameter.

Trait Implementations

impl Clone for InstructionParameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InstructionParameter
[src]

Formats the value using the given formatter. Read more

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