pub trait FromArrowArray<A> {
// Required method
fn from_arrow(array: A, nullable: bool) -> VortexResult<Self>
where Self: Sized;
}Required Methods§
fn from_arrow(array: A, nullable: bool) -> VortexResult<Self>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".