Enum brain::bytecode::ByteCodeType [] [src]

pub enum ByteCodeType {
    ICONST(i32),
    IADD(usize),
    ISUB(usize),
    FOWARD(usize),
    BACKWARD(usize),
    LOOP(usize),
    END(usize),
    WRITE(usize),
    READ(usize),
    INVALID,
}

Variants

Trait Implementations

impl Debug for ByteCodeType
[src]

Formats the value using the given formatter.

impl<'a> From<&'a Instruction> for ByteCodeType
[src]

Performs the conversion.

impl<'a> From<&'a str> for ByteCodeType
[src]

Performs the conversion.

impl Display for ByteCodeType
[src]

Formats the value using the given formatter. Read more