pub enum WriteVal {
QueryEntry(QueryEntry),
IncCounter(CounterId),
CurrentVal(usize),
}Expand description
A value that can be written to a table in an action.
Variants§
QueryEntry(QueryEntry)
A variable or a constant.
IncCounter(CounterId)
A fresh value from the given counter.
CurrentVal(usize)
The value of the current row index.
Trait Implementations§
impl Copy for WriteVal
Auto Trait Implementations§
impl Freeze for WriteVal
impl RefUnwindSafe for WriteVal
impl Send for WriteVal
impl Sync for WriteVal
impl Unpin for WriteVal
impl UnwindSafe for WriteVal
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