dxpdf 0.2.8

A fast DOCX-to-PDF converter powered by Skia
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Reusable schema atoms shared across OOXML serde parsers.
//!
//! Each submodule owns one category of primitive and its `Deserialize` impl.
//! All types here are pure schema-layer concerns — they may wrap model types
//! (e.g., `Dimension<U>`) but never leak serde into the model layer.

pub mod colors;
pub mod st_enums;
pub mod toggles;
pub mod units;

pub use colors::{HexColor, RgbHexU32};
pub use toggles::{AttrBool, OnOff};