[][src]Enum bfkit::parser::BrainfuckInstruction

pub enum BrainfuckInstruction {
    Add(u8),
    Sub(u8),
    Right(usize),
    Left(usize),
    Read,
    Write,
    Open,
    Close,
    Set(u8),
    ScanLeft,
    ScanRight,
}

Represents any of the eight standard Brainfuck instructions:

  • +
  • -
  • >
  • <
  • ,
  • .
  • [
  • ]

as well as any instructions generated by optimizations.

Variants

Add(u8)

Add represents some number of Brainfuck + instructions.

Sub(u8)

Sub represents some number of Brainfuck - instructions.

Right(usize)

Right represents some number of Brainfuck '>' instructions.

Left(usize)

Left represents some number of Brainfuck '<' instructions.

Read

Read represents a Brainfuck , instruction.

Write

Write represents a Brainfuck . instruction.

Open

Open represents a Brainfuck [ instruction.

Close

Close represents a Brainfuck ] instruction.

Set(u8)

Set is an instruction that assigns a cell in the tape to some value.

ScanLeft

ScanLeft represents the following sequence of Brainfuck instructions: [<]

ScanRight

ScanRight represents the following sequence of Brainfuck instructions: [>]

Trait Implementations

impl Clone for BrainfuckInstruction[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<BrainfuckInstruction> for BrainfuckInstruction[src]

impl Debug for BrainfuckInstruction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<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]