Skip to main content

sea_orm/entity/
arrow_schema.rs

1/// Trait for Entities with Arrow integration
2pub trait ArrowSchema {
3    /// Get the Arrow schema for this Entity
4    fn arrow_schema() -> sea_orm_arrow::arrow::datatypes::Schema;
5}