pub fn arrow_array_deserialize_iterator<'a, T>(
    arr: &'a dyn Array
) -> Result<impl Iterator<Item = T> + 'a>where
    T: ArrowDeserialize + ArrowField<Type = T> + 'static,
    for<'b> &'b <T as ArrowDeserialize>::ArrayType: IntoIterator,
Expand description

Return an iterator that deserializes an Array to an element of type T