pub trait Tuple {
// Required method
fn value_at(&self, idx: usize) -> Option<TypedValue>;
}Expand description
Trait for accessing values by column index during expression evaluation.
Implemented for [TypedValue] (backward-compatible slice access) and for
RowRef in the executor (zero-copy column-major access from DataChunk).