pub trait IndexableValues {
type Text: Clone;
type Binary: Clone;
// Required method
fn get(&self, col_idx: usize) -> Option<Value<Self::Text, Self::Binary>>;
}Expand description
Collection of indexable values.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".