Trait polars_core::prelude::ValueSize
source · pub trait ValueSize {
fn get_values_size(&self) -> usize;
}
Required Methods§
sourcefn get_values_size(&self) -> usize
fn get_values_size(&self) -> usize
Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy
Implementations on Foreign Types§
source§impl ValueSize for BinaryArray<i64>
impl ValueSize for BinaryArray<i64>
fn get_values_size(&self) -> usize
Implementors§
impl ValueSize for BinaryChunked
Available on crate feature
dtype-binary
only.