pub enum EnvFrame {
Owned(HashMap<String, Rc<Value>>),
Shared(Rc<HashMap<String, Rc<Value>>>),
Slots(Vec<Rc<Value>>),
}Variants§
Owned(HashMap<String, Rc<Value>>)
Slots(Vec<Rc<Value>>)
Slot-indexed frame for resolved function bodies — O(1) lookup.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EnvFrame
impl RefUnwindSafe for EnvFrame
impl !Send for EnvFrame
impl !Sync for EnvFrame
impl Unpin for EnvFrame
impl UnsafeUnpin for EnvFrame
impl UnwindSafe for EnvFrame
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