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
Currently we don't do any complicated munging of the signatures at the Rust level, the generated C functions almost always directly call the Rust functions without ceremony.
We should support some transformations, like:
Returning Result<T, E> will generate a C API using DiplomatResult with the appropriate conversion at the boundary
Self in parameters should be appropriately translated
The text was updated successfully, but these errors were encountered:
Currently we don't do any complicated munging of the signatures at the Rust level, the generated C functions almost always directly call the Rust functions without ceremony.
We should support some transformations, like:
Result<T, E>
will generate a C API usingDiplomatResult
with the appropriate conversion at the boundarySelf
in parameters should be appropriately translatedThe text was updated successfully, but these errors were encountered: