Function array_to_binary_iter

Source
pub fn array_to_binary_iter(
    array: &dyn Array,
) -> Result<impl Iterator<Item = Option<Vec<u8>>>>
Expand description

Converts any array that can be cast to a binary array into an iterator of Option<Vec<u8>>

ยงErrors

Returns an error if the array cannot be cast to a binary array.