rhai/src/serde/mod.rs

13 lines
273 B
Rust
Raw Normal View History

2021-07-25 16:56:05 +02:00
//! _(serde)_ Serialization and deserialization support for [`serde`](https://crates.io/crates/serde).
2021-02-19 08:17:14 +01:00
//! Exported under the `serde` feature only.
mod de;
mod deserialize;
2021-12-06 13:52:47 +01:00
mod metadata;
2021-02-19 08:17:14 +01:00
mod ser;
mod serialize;
mod str;
pub use de::from_dynamic;
pub use ser::to_dynamic;