pub struct StringColumn(pub Vec<Option<String>>);Tuple Fields§
§0: Vec<Option<String>>Trait Implementations§
Source§impl ColumnArray for StringColumn
impl ColumnArray for StringColumn
fn to_json(&self) -> Vec<Value>
fn dtype(&self) -> Dtype
fn get(&self, index: usize) -> Option<CellValue>
fn len(&self) -> usize
fn null_count(&self) -> usize
fn as_any(&self) -> &dyn Any
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
Auto Trait Implementations§
impl Freeze for StringColumn
impl RefUnwindSafe for StringColumn
impl Send for StringColumn
impl Sync for StringColumn
impl Unpin for StringColumn
impl UnwindSafe for StringColumn
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more