Skip to main content

altium_format/api/generic/
mod.rs

1//! Layer 2: Generic record access without type knowledge.
2//!
3//! Provides dynamic access to Altium records similar to `serde_json::Value`,
4//! allowing exploration and modification without knowing specific types.
5
6mod binary_record;
7mod container;
8mod record;
9mod value;
10
11pub use binary_record::BinaryRecord;
12pub use container::{BinaryContainer, ParamsContainer};
13pub use record::GenericRecord;
14pub use value::Value;