uniffi-bindgen-java 0.4.2

a java bindings generator for uniffi rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
[bindings.java]
package_name = "customtypes"

[bindings.java.custom_types.Url]
# Name of the type in the Java code
type_name = "URL"
# Classes that need to be imported
imports = ["java.net.URI", "java.net.URL"]
# Functions to convert between strings and URLs
into_custom = "new URI({}).toURL()"
from_custom = "{}.toString()"