I created a POC library to enable inheritance in Rust
I recently built a small Rust library as a learning project to simulate struct inheritance using a custom derive macro. It lets you reuse fields and methods from parent structs in a clean, Rust-friend...