A macro for inheriting Rust structures from C++ classes. Nothing of value lies here.
```rust use cpp_inherit::*;
struct RustType {}
impl RustType { fn new() -> Self { Self { base: BaseType { vtable: RustType::VTABLE_ as _, value: 3 } } }
#[overridden] fn x(&self) -> i32 {
99
}
}
// Now you can pass RustType as a BaseType, access any BaseType fields, call any BaseType methods (virtual or not), from either C++ or Rust ```