pub trait ToArray {
// Required method
fn to_anyvalue_array(&self) -> Result<Vec<Option<AnyValue>>>;
}Expand description
This trait is used to convert arrow array into anyvalue array. Most of the arrow arrays
implement this trait. Excepct the array which need to pre-compute the target type like
StructArray.