pub struct ExecutionContext {
pub state_vars: BTreeMap<String, Value>,
pub functions: BTreeMap<String, EvalFunction>,
}Expand description
Execution context for invariant evaluation.
Fields§
§state_vars: BTreeMap<String, Value>Current state variable values.
functions: BTreeMap<String, EvalFunction>Function implementations.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecutionContext
impl RefUnwindSafe for ExecutionContext
impl Send for ExecutionContext
impl Sync for ExecutionContext
impl Unpin for ExecutionContext
impl UnsafeUnpin for ExecutionContext
impl UnwindSafe for ExecutionContext
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