easyofd-core 0.1.1

Core types, traits, and models for easyofd-rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 扩展模块。
//!
//! 对应 GB/T 33190 中的扩展机制,包含 3 个类型:
//! - [`Extensions`] — 扩展根节点
//! - [`CtExtension`] — 单个扩展
//! - [`Property`] — 扩展属性

mod ct_extension;
#[allow(clippy::module_inception)]
mod extensions;
mod property;

pub use ct_extension::CtExtension;
pub use extensions::Extensions;
pub use property::Property;