pub trait TryIntoArray {
    // Required method
    fn try_into_array(self) -> VortexResult<ArrayRef>;
}Expand description
Trait for converting a type into a Vortex ArrayRef, returning an error if the conversion fails.
pub trait TryIntoArray {
    // Required method
    fn try_into_array(self) -> VortexResult<ArrayRef>;
}Trait for converting a type into a Vortex ArrayRef, returning an error if the conversion fails.