I tend to prefer Qt as an end user, are there similar tutorials for Qt+Rust?
I remember someone telling me that it’s not as good a fit but I can’t remember why that is.
the problem is that QT is write on C++. It makes harder to make bindings to any other language.
The real problem isn't that C++ is that hard to bind. Writing a C style wrapper around the OO style code in Qt is easy. But Qt relies on compile time code generation for event handling, properties and such, and this part is hard to replicate in other languages. It can be done; PyQt, PySide, etc do it, but it takes quite some effort.
Rust has excellent support for compile-time codegen.
You are welcome to try to duplicate the functionality of the moc tool somehow. If it was trivial, it would have been done already.