pub struct InterpreterSettings {
pub no_expr_check: bool,
pub verbose_stepwise: bool,
pub verbose_bytecode: bool,
pub verbose_expression: bool,
}
Fields
no_expr_check: bool
skip expression checking
verbose_stepwise: bool
dump stepwise bytecode
verbose_bytecode: bool
dump bytecode trace
verbose_expression: bool
dump expression trace
Implementations
sourceimpl InterpreterSettings
impl InterpreterSettings
pub fn verbose_default() -> Self
Trait Implementations
sourceimpl Clone for InterpreterSettings
impl Clone for InterpreterSettings
sourcefn clone(&self) -> InterpreterSettings
fn clone(&self) -> InterpreterSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for InterpreterSettings
impl Default for InterpreterSettings
sourcefn default() -> InterpreterSettings
fn default() -> InterpreterSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for InterpreterSettings
impl Send for InterpreterSettings
impl Sync for InterpreterSettings
impl Unpin for InterpreterSettings
impl UnwindSafe for InterpreterSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more