pub trait Row {
// Required method
fn get(&self, field: &FieldRef) -> Option<Value>;
}Expand description
Pluggable row-binding lookup. The evaluator stays agnostic of
whether the caller has a slot vector indexed by planner-assigned
position, a flat HashMap<String, Value>, or a graph binding —
every consumer just provides a Row impl that resolves a
FieldRef to a Value.