pub struct Env { /* private fields */ }Expand description
A lexical environment: a frame of symbol bindings chained to a parent.
Lookups walk from the local frame outward through parent frames. The active
Env is held by the Cx and swapped during nested scopes.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Env
impl !UnwindSafe for Env
impl Freeze for Env
impl Send for Env
impl Sync 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