pub trait IntoArray {
// Required method
fn into_array(self) -> Array;
}
Required Methods§
fn into_array(self) -> Array
Implementations on Foreign Types§
source§impl<T: NativePType> IntoArray for Vec<T>
impl<T: NativePType> IntoArray for Vec<T>
fn into_array(self) -> Array
Implementors§
impl IntoArray for Canonical
Implement the IntoArray for the Canonical type.
This conversion is always “free” and should not touch underlying data. All it does is create an owned pointer to the underlying concrete array type.
This combined with the above IntoCanonical impl for Array allows simple two-way conversions between arbitrary Vortex encodings and canonical Arrow-compatible encodings.