[][src]Struct mruby::eval::EvalContext

pub struct EvalContext {
    pub filename: String,
}

EvalContext is used to manipulate the state of a wrapped sys::mrb_state. Mrb maintains a stack of EvalContexts and MrbEval::eval uses the current context to set the __FILE__ magic constant on the sys::mrbc_context.

Fields

filename: String

Value of the __FILE__ magic constant that also appears in stack frames.

Methods

impl EvalContext[src]

pub fn new<T>(filename: T) -> Self where
    T: AsRef<str>, 
[src]

Create a new EvalContext.

pub fn root() -> Self[src]

Create a root, or default, EvalContext. The root context sets the __FILE__ magic constant to "(eval)".

Trait Implementations

impl Eq for EvalContext[src]

impl PartialEq<EvalContext> for EvalContext[src]

impl Clone for EvalContext[src]

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

Performs copy-assignment from source. Read more

impl Default for EvalContext[src]

impl Debug for EvalContext[src]

Auto Trait Implementations

impl Send for EvalContext

impl Unpin for EvalContext

impl Sync for EvalContext

impl UnwindSafe for EvalContext

impl RefUnwindSafe for EvalContext

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]