pub struct ExecutionContext {
pub current_values: Vec<TypedValue>,
}Expand description
Execution context that holds the state of the current command execution.
Fields§
§current_values: Vec<TypedValue>Implementations§
Source§impl ExecutionContext
impl ExecutionContext
pub fn new() -> Self
pub fn add_value(&mut self, value: TypedValue)
pub fn get_value(&self, index: usize) -> Option<&TypedValue>
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