Trait StringArrayType
Source pub trait StringArrayType<'a>: ArrayAccessor<Item = &'a str> + Sized {
// Required methods
fn iter(&self) -> ArrayIter<Self>;
fn is_ascii(&self) -> bool;
}
๐Deprecated since 45.0.0: Use arrow::array::StringArrayType instead
Expand description
Abstracts iteration over different types of string arrays.
๐Deprecated since 45.0.0: Use arrow::array::StringArrayType instead
Return an ArrayIter
over the values of the array.
This iterator iterates returns Option<&str>
for each item in the array.
๐Deprecated since 45.0.0: Use arrow::array::StringArrayType instead
Check if the array is ASCII only.
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
๐Deprecated since 45.0.0: Use arrow::array::StringArrayType instead
๐Deprecated since 45.0.0: Use arrow::array::StringArrayType instead
๐Deprecated since 45.0.0: Use arrow::array::StringArrayType instead
๐Deprecated since 45.0.0: Use arrow::array::StringArrayType instead