pub trait IntoVortexArray {
// Required method
fn into_array(self) -> ArrayRef;
}Expand description
Required Methods§
Sourcefn into_array(self) -> ArrayRef
fn into_array(self) -> ArrayRef
Convert this Arrow buffer into a non-nullable Vortex array without copying.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".