[][src]Struct brainfrsck::components::Tape

pub struct Tape { /* fields omitted */ }

The component that handles the instructions

Methods

impl Tape[src]

pub fn new(stream: Vec<Instruction>) -> Self[src]

pub fn from_string<S: ToString>(s: S) -> Self[src]

Creates a Tape from a string of instructions

pub fn get_instruction(&mut self) -> Instruction[src]

Gets the current instruction and advances the instruction pointer

pub fn jump_back(&mut self) -> Result<(), BrainfuckError>[src]

Utility function used to jump back to the corresponding SetJump instruction ([) Returns Err if it does not find a matching instruction

pub fn jump_forward(&mut self) -> Result<(), BrainfuckError>[src]

Utility function used to jump forward to the corresponding Jump instruction (]) Returns Err if it does not find a matching instruction

Trait Implementations

impl Default for Tape[src]

impl Debug for Tape[src]

Auto Trait Implementations

impl Send for Tape

impl Sync for Tape

impl Unpin for Tape

impl UnwindSafe for Tape

impl RefUnwindSafe for Tape

Blanket Implementations

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]