pub trait ArrowSchema {
// Required method
fn arrow_schema() -> Schema;
}Available on crate feature
with-arrow only.Expand description
Trait for Entities with Arrow integration
Required Methods§
Sourcefn arrow_schema() -> Schema
fn arrow_schema() -> Schema
Get the Arrow schema for this Entity
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.