pub trait CxxQtType {
type Rust;
// Required methods
fn rust(&self) -> &Self::Rust;
fn rust_mut(self: Pin<&mut Self>) -> Pin<&mut Self::Rust>;
}
Expand description
This trait is automatically implemented for all QObject types generated by CXX-Qt. It provides information about the inner Rust struct that is wrapped by the QObject, as well as the methods that Cxx-Qt will generate for the QObject.