[][src]Struct stack_vm::Instruction

pub struct Instruction<T: Debug> {
    pub op_code: usize,
    pub name: String,
    pub arity: usize,
    pub fun: InstructionFn<T>,
}

Describes a single instruction which can be used to execute programs.

Contains:

  • An op code - a unique integer to identify this instruction.
  • A name for serialisation and debugging reasons.
  • An arity - the number of arguments this instruction expects to receive.
  • A function which is used to execute the instruction.

Fields

op_code: usizename: Stringarity: usizefun: InstructionFn<T>

Methods

impl<T: Debug> Instruction<T>[src]

pub fn new(
    op_code: usize,
    name: &str,
    arity: usize,
    fun: InstructionFn<T>
) -> Instruction<T>
[src]

Create a new instruction.

Trait Implementations

impl<T: Debug> Debug for Instruction<T>[src]

Auto Trait Implementations

impl<T> Send for Instruction<T>

impl<T> Sync for Instruction<T>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]