pub struct Env {
vars: Vec<(String, Value)>,
parent: Option<Box<Env>>,
pub context: Option<*mut Keyboard>,
pub sandbox: Option<AppSandbox>,
}Fields§
§vars: Vec<(String, Value)>§parent: Option<Box<Env>>§context: Option<*mut Keyboard>§sandbox: Option<AppSandbox>Implementations§
Trait Implementations§
impl Send for Env
impl Sync for Env
Auto Trait Implementations§
impl !RefUnwindSafe for Env
impl !UnwindSafe for Env
impl Freeze for Env
impl Unpin for Env
impl UnsafeUnpin for Env
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