pub enum SetValue {
Operand(SetOperand),
Plus(SetOperand, SetOperand),
Minus(SetOperand, SetOperand),
}Expand description
Value expression for SET.
Variants§
Operand(SetOperand)
Direct value or path reference
Plus(SetOperand, SetOperand)
operand + operand
Minus(SetOperand, SetOperand)
operand - operand
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SetValue
impl RefUnwindSafe for SetValue
impl Send for SetValue
impl Sync for SetValue
impl Unpin for SetValue
impl UnsafeUnpin for SetValue
impl UnwindSafe for SetValue
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