pub trait FieldValue {
// Provided methods
fn to_value(&self) -> Value { ... }
fn from_value(_value: &Value) -> Option<Self>
where Self: Sized { ... }
}Expand description
FieldValue
Conversion boundary for values used in query predicates.
Represents values that can appear on the right-hand side of predicates.