Skip to main content

Tuple

Trait Tuple 

Source
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).

Required Methods§

Implementations on Foreign Types§

Source§

impl Tuple for Vec<TypedValue>

Source§

impl Tuple for [TypedValue]

Implementors§