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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more