Why does Tauri 2.0 make the Invoke struct non-pub? #11250
Answered
by
suxiaoshao
suxiaoshao
asked this question in
Q&A
-
In the Tauri 1.x version, developers can implement the |
Beta Was this translation helpful? Give feedback.
Answered by
suxiaoshao
Oct 9, 2024
Replies: 1 comment 2 replies
-
This sounds like an accident. Please open a normal GitHub issue so that the team can take a look. P.S. yes, the Builder is basically always recommended. Would you mind explaining your issues with it, if any? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found the problem; the
Invoke
in the Tauri code has#[doc(hidden)]
added, which is why I couldn't find it on docs.rs and rust-analyzer didn't auto-import it either.