Registry / serialization / arrow-schema

arrow-schema

JSON →
library59.0.0rscratesunverified

Defines the logical types for Arrow arrays, providing schema metadata for columnar data.

# Cargo.toml [dependencies] arrow-schema = "59.0.0"
INSTALL
IMPORT
SIG · ARROW-SCHEMA
A
arrow-schema
serializationrustv59.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Schema
use arrow_schema::Schema;

Creates a simple Arrow schema with two fields.

use arrow_schema::{Schema, Field, DataType}; fn main() { let schema = Schema::new(vec![ Field::new("id", DataType::Int32, false), Field::new("name", DataType::Utf8, true), ]); println!("{:?}", schema); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
59.0.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
30 hits · last 30 days
node
26
Meta
1
OpenAI (training)
1
Resources
arrow-schema — cargo add arrow-schema · libregistry