Skip to main content

ColumnValues

Trait ColumnValues 

Source
pub trait ColumnValues {
    // Required method
    fn len(&self) -> usize;
}
Expand description

A collection of ParquetValueType encoded by a ColumnValueEncoder

Required Methods§

Source

fn len(&self) -> usize

The number of values in this collection

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl ColumnValues for dyn Array

Available on crate feature arrow only.
Source§

fn len(&self) -> usize

Source§

impl<T: ParquetValueType> ColumnValues for [T]

Source§

fn len(&self) -> usize

Implementors§