pub fn array_to_string_iter(
array: &dyn Array,
) -> Result<impl Iterator<Item = Option<String>>>Expand description
Converts any array that can be cast to a string array into an iterator of Option<String>
ยงErrors
Returns an error if the array cannot be cast to a string array.