Struct rquickjs_core::context::EvalOptions
source · pub struct EvalOptions {
pub global: bool,
pub strict: bool,
pub backtrace_barrier: bool,
}
Expand description
Eval options.
Fields§
§global: bool
Global code.
strict: bool
Force ‘strict’ mode.
backtrace_barrier: bool
Don’t include the stack frames before this eval in the Error() backtraces.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for EvalOptions
impl Send for EvalOptions
impl Sync for EvalOptions
impl Unpin for EvalOptions
impl UnwindSafe for EvalOptions
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more