Building a runtime reflection system for Rust (Part 1)

When building support for Rust applications, we needed a system that could give us dynamic access to types, attributes and methods at runtime. Since Rust doesn’t have native support for such things, we had to build our own version of a runtime reflection … Read more

Similar