pub trait IntoArrayRef {
// Required method
fn into_array_ref(self) -> ArrayRef;
}Expand description
Converts a vector or array into an ArrayRef.
Required Methods§
fn into_array_ref(self) -> ArrayRef
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".