Expand description
A simple & modular data model.
§Features
std(default): enables functionality that depends on the standard library. Disabling it makes the crateno_stdcompatible.alloc: enables functionality that depends on allocation. Included instd.no-std: enables functionality incompatible withstd(unused).
safe: forbid unsafe at the crate level.safest: forbid unsafe recursively.unsafe: enables all the unsafe features:unsafe_constructors: enables usage of unchecked constructors.unsafe_unit: enables theunit::DataRawunion.
unsafest: enable unsafe recursively.