pub trait FieldValue {
// Provided method
fn to_value(&self) -> Value { ... }
}Expand description
FieldValue
Conversion boundary for values used in query predicates.
FieldValue represents any value that can appear on the right-hand side
of a predicate (e.g. field == value, field IN values). Implementations
convert Rust values into owned Value instances that are stored inside
query plans and executed later.