Trait parquet::arrow::converter::Converter[][src]

pub trait Converter<S, T> {
    fn convert(&self, source: S) -> Result<T>;
}
Expand description

A converter is used to consume record reader’s content and convert it to arrow primitive array.

Required methods

This method converts record reader’s buffered content into arrow array. It will consume record reader’s data, but will not reset record reader’s state.

Implementors