Walk over compile-time designated Rust types at run-time.

Kestrel 1120725571 Begin adding some documentation. il y a 3 ans
rustructure 1120725571 Begin adding some documentation. il y a 3 ans
rustructure-macros a37f046d0d Clippy nits. il y a 3 ans
rustructure-test e0e93181ff rustfmt pass. il y a 3 ans
.gitignore 9405467ae2 Initial working version. il y a 3 ans
.vimrc 9405467ae2 Initial working version. il y a 3 ans
Cargo.lock 28a08de6ee Added skip_walk attribute. il y a 3 ans
Cargo.toml 9405467ae2 Initial working version. il y a 3 ans
README.md 1120725571 Begin adding some documentation. il y a 3 ans

README.md

rustructure supports walking over designated Rust types at run-time.

This allows for some level of introspection from the perspective of libraries that consume external types that can be prepared for their consumption. One motivating example is when generating code for serialization or deserialization as a complement to serde when a format requires foreknowledge of the type at a time it is impossible to have an actual instance of the type.

This crate can be no_std by removing the default std feature, though without alloc its usefulness is likely limited.