jagua_rs/io/mod.rs
1/// External (serializable) representations of the entities within the library.
2pub mod ext_repr;
3
4/// All logic for converting external representations into internal ones
5pub mod import;
6
7/// All logic for exporting internal representations into external ones
8pub mod export;
9
10/// All logic for creating SVG from [`Layout`](crate::entities::Layout)s
11pub mod svg;