pub trait FromArrow: Sized {
// Required method
fn from_arrow(batch: &ArrowBatch) -> Vec<Self>;
}Expand description
Used to do ArrowBatch-Native Rust type conversions while consuming the input value.
Required Methods§
Sourcefn from_arrow(batch: &ArrowBatch) -> Vec<Self>
fn from_arrow(batch: &ArrowBatch) -> Vec<Self>
Converts to the Vector type from the ArrowBatch type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.