pub trait FieldValue {
// Required methods
fn kind() -> FieldValueKind
where Self: Sized;
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.