You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since cxx is so awesome at wrapping C++, it is nice to be able to export the interface directly on the rust side, but sometimes it is preferable to hide certain functions that are used directly by a custom impl MyCxxType. Since all functions are public they all by default want to show up in the docs which I find myself using a lot given proc macro support in IDEs is still early.
The text was updated successfully, but these errors were encountered:
Since cxx is so awesome at wrapping C++, it is nice to be able to export the interface directly on the rust side, but sometimes it is preferable to hide certain functions that are used directly by a custom
impl MyCxxType
. Since all functions are public they all by default want to show up in the docs which I find myself using a lot given proc macro support in IDEs is still early.The text was updated successfully, but these errors were encountered: