Trait hypersync_client::FromArrow
source · 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.
Object Safety§
This trait is not object safe.