pub enum PredicateValue {
Literal(Value),
Dynamic(String),
Field(FieldPath),
}Expand description
Value in a predicate comparison
Variants§
Literal(Value)
Literal JSON value
Dynamic(String)
Dynamic runtime value (e.g., “now()” for current timestamp)
Field(FieldPath)
Reference to another field
Trait Implementations§
Source§impl Clone for PredicateValue
impl Clone for PredicateValue
Source§fn clone(&self) -> PredicateValue
fn clone(&self) -> PredicateValue
Returns a duplicate 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 PredicateValue
impl Debug for PredicateValue
Source§impl<'de> Deserialize<'de> for PredicateValue
impl<'de> Deserialize<'de> for PredicateValue
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 PartialEq for PredicateValue
impl PartialEq for PredicateValue
Source§impl Serialize for PredicateValue
impl Serialize for PredicateValue
impl StructuralPartialEq for PredicateValue
Auto Trait Implementations§
impl Freeze for PredicateValue
impl RefUnwindSafe for PredicateValue
impl Send for PredicateValue
impl Sync for PredicateValue
impl Unpin for PredicateValue
impl UnwindSafe for PredicateValue
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