Skip to main content

sim_lib_scene/
text.rs

1//! Lossless canonical text for the scene-data subset of `Expr`.
2//!
3//! Scenes are pure data, so `codec:scene` serializes them through the
4//! codec-neutral portable value form that lives in `sim-codec` (shared with
5//! `codec:intent` and any other domain codec that must round-trip data without
6//! borrowing a general codec's grammar). This module re-exports that form under
7//! the names `codec:scene` uses.
8
9pub use sim_codec::{decode_portable as decode, encode_portable as encode};