[][src]Struct garnish_lang_runtime::ExpressionRuntime

pub struct ExpressionRuntime { /* fields omitted */ }

Methods

impl ExpressionRuntime[src]

pub fn execute_with_context<T>(
    &mut self,
    start: String,
    context: &T
) -> Result<ExpressionResult> where
    T: ExpressionContext
[src]

pub fn execute<T>(&mut self, start: T) -> Result<ExpressionResult> where
    T: ToString
[src]

pub fn next_instruction(&self) -> Result<Instruction>[src]

impl ExpressionRuntime[src]

pub fn set_input(&mut self, value: &ExpressionValue) -> Result[src]

impl ExpressionRuntime[src]

pub fn instruction_iter<'a, T>(
    &'a mut self,
    start: String,
    context: &'a T
) -> Result<InstructionIter<'a, T>, String> where
    T: ExpressionContext
[src]

impl ExpressionRuntime[src]

pub fn perform_iterate_to_result(&mut self, single_result: bool) -> Result[src]

impl ExpressionRuntime[src]

impl ExpressionRuntime[src]

pub fn new<T: InstructionSet>(instructions: &T) -> ExpressionRuntime[src]

Trait Implementations

impl Clone for ExpressionRuntime[src]

impl ExpressionValueConsumer for ExpressionRuntime[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> CopyValue for T where
    T: ExpressionValueConsumer
[src]

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

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, 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.