We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, if you want to expose a function on the inner Rust struct to C++/QML, you always have to write a wrapper function outside the bridge.
E.g.:
#[cxx_qt::bridge] mod qobject { extern "RustQt" { #[qobject] type MyObject = super::MyObjectRust; fn my_fun(self: &MyObject) -> i32; } } impl qobject::MyObject { fn my_fun(&self) -> i32 { self.rust().my_fun(); } }
We could consider automating this if you provide a given attribute to the declaration (e.g. #[inner]).
#[inner]
Example:
#[cxx_qt::bridge] mod qobject { extern "RustQt" { #[qobject] type MyObject = super::MyObjectRust; #[inner] // auto-generates the wrapper outside the bridge fn my_fun(self: &MyObject) -> i32; } }
Note that this may cause issues with Result<>, as the Error type wouldn't necessarily be known.
Result<>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, if you want to expose a function on the inner Rust struct to C++/QML, you always have to write a wrapper function outside the bridge.
E.g.:
We could consider automating this if you provide a given attribute to the declaration (e.g.
#[inner]
).Example:
Note that this may cause issues with
Result<>
, as the Error type wouldn't necessarily be known.The text was updated successfully, but these errors were encountered: