[][src]Struct xio_instructionset::InstructionParameter

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

id: String

The id string of the parameter.

group: String

The group to which the parameter belongs.

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

parameter_type: Vec<DataType>

The allowed types of parameters.

Each parameter in a group must have the same type.

storage: StorageTypeWithMixed

The permitted storage type for the parameter.

description: String

A human-readable description of the parameter.

Trait Implementations

impl Clone for InstructionParameter[src]

impl PartialEq<InstructionParameter> for InstructionParameter[src]

impl Debug for InstructionParameter[src]

impl Serialize for InstructionParameter[src]

impl<'de> Deserialize<'de> for InstructionParameter[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> PathLoad for T where
    T: DeserializeOwned
[src]

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

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