Trait mz_persist_types::columnar::PartDecoder
source · pub trait PartDecoder<T> {
// Required method
fn decode(&self, idx: usize, val: &mut T);
}
Expand description
A decoder for values of a fixed schema.
This allows us to amortize the cost of downcasting columns into concrete types.