FFI naming and signatures, and features
Javac will create the name of the signature in Rust convention which can be called on native code.
- In the command line write:
javac -h . GlideValueResolver.javaThe results can be found in the glide_ffi_resolvers_GlideValueResolver file once the javac -h. GlideValueResolver.java command is ran.
In this project, only the function name and signature name is necessary. lib.rs method names explicitly point to the native functions defined there.