[][src]Type Definition arrow::array::StringArray

type StringArray = GenericStringArray<i32>;

An array where each element is a variable-sized sequence of bytes representing a string whose maximum length (in bytes) is represented by a i32.

Trait Implementations

impl From<GenericListArray<i32>> for StringArray[src]

impl<'_> From<Vec<&'_ str>> for StringArray[src]

impl<'_> From<Vec<Option<&'_ str>>> for StringArray[src]

impl OrdArray for StringArray[src]