I know that a Box<SomeRustStruct> can be interpreted as a raw pointer SomeRustStruct* in C++, when the struct has a C representation.
How to do the converse? I only found some usages of bindgen.
How do I create and hold a pointer to a C++ object in Rust?