Trait ColumnArray
Source pub trait ColumnArray: Debug {
// Required methods
fn len(&self) -> usize;
fn dtype(&self) -> Dtype;
fn get(&self, index: usize) -> Option<CellValue>;
fn null_count(&self) -> usize;
fn as_any(&self) -> &dyn Any;
fn to_json(&self) -> Vec<Value>;
// Provided methods
fn non_null_count(&self) -> usize { ... }
fn mean(&self) -> Option<f64> { ... }
fn sum(&self) -> Option<f64> { ... }
fn min(&self) -> Option<f64> { ... }
fn max(&self) -> Option<f64> { ... }
fn is_empty(&self) -> bool { ... }
}
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.