Walk over compile-time designated Rust types at run-time.
|
2 anos atrás | |
---|---|---|
rustructure | 2 anos atrás | |
rustructure-macros | 2 anos atrás | |
rustructure-test | 2 anos atrás | |
.gitignore | 2 anos atrás | |
.vimrc | 2 anos atrás | |
Cargo.lock | 2 anos atrás | |
Cargo.toml | 2 anos atrás | |
README.md | 2 anos atrás |
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.