Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::exec::Batch - Rust
[go: Go Back, main page]

Trait datafusion::exec::Batch [] [src]

pub trait Batch {
    fn col_count(&self) -> usize;
fn row_count(&self) -> usize;
fn column(&self, index: usize) -> &Rc<ColumnData>;
fn row_slice(&self, index: usize) -> Vec<Value>; }

A batch of data organized as columns. The intent is to implement this using Apache Arrow soon but for now there will be a naive version while I integrate this.

Required Methods

copy values into a row (EXPENSIVE)

Implementors