pub enum FieldValueExpression {
Arithmetic(ArithmeticExpression),
Literal(LiteralExpression),
}
Variants§
Arithmetic(ArithmeticExpression)
Literal(LiteralExpression)
Trait Implementations§
Source§impl Clone for FieldValueExpression
impl Clone for FieldValueExpression
Source§fn clone(&self) -> FieldValueExpression
fn clone(&self) -> FieldValueExpression
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FieldValueExpression
impl Debug for FieldValueExpression
Source§impl<'de> Deserialize<'de> for FieldValueExpression
impl<'de> Deserialize<'de> for FieldValueExpression
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for FieldValueExpression
impl Display for FieldValueExpression
Source§impl Hash for FieldValueExpression
impl Hash for FieldValueExpression
Source§impl PartialEq for FieldValueExpression
impl PartialEq for FieldValueExpression
Source§impl Serialize for FieldValueExpression
impl Serialize for FieldValueExpression
impl Eq for FieldValueExpression
impl StructuralPartialEq for FieldValueExpression
Auto Trait Implementations§
impl Freeze for FieldValueExpression
impl RefUnwindSafe for FieldValueExpression
impl Send for FieldValueExpression
impl Sync for FieldValueExpression
impl Unpin for FieldValueExpression
impl UnwindSafe for FieldValueExpression
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