altium-format 0.1.7

Core altium-cli library for reading and writing Altium Designer files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Layer 2: Generic record access without type knowledge.
//!
//! Provides dynamic access to Altium records similar to `serde_json::Value`,
//! allowing exploration and modification without knowing specific types.

mod binary_record;
mod container;
mod record;
mod value;

pub use binary_record::BinaryRecord;
pub use container::{BinaryContainer, ParamsContainer};
pub use record::GenericRecord;
pub use value::Value;