Skip to main content

switchback_avro/schema/
mod.rs

1//! Avro schema IR and populate helpers.
2
3mod body;
4mod ir;
5mod named;
6
7pub use body::populate_avro_schema_body;
8pub use ir::{
9    AvroArray, AvroEnum, AvroField, AvroFixed, AvroMap, AvroPrimitive, AvroRecord, AvroSchema,
10    AvroUnion,
11};
12pub use named::collect_named_avro_schemas;