pub struct Locals {
data: Box<[Value]>,
}
Expand description
A helper for managing values of locals (and parameters) during function execution.
Note: As of now this stores the Values. In the future storing the raw bytes without information about a value’s type may be preferred to minimize memory usage.
Fields§
§data: Box<[Value]>
Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Locals
impl Send for Locals
impl Sync for Locals
impl Unpin for Locals
impl UnwindSafe for Locals
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