#[derive(IntoJava)]
{
    // Attributes available to this derive:
    #[jnix]
}
Expand description

Derives IntoJava for a type.

The name of the target Java class must be known for code generation. Either it can be specified explicitly using an attribute, like so: #[jnix(class_name = "my.package.MyClass"], or it can be derived from the Rust type name as long as the containing Java package is specified using an attribute, like so: #[jnix(package = "my.package")].

Structs

The generated IntoJava implementation for a struct will convert the field values into their respective Java types. Then, the target Java class is constructed by calling a constructor with the converted field values as parameters. Note that the field order is used as the constructor parameter order.

Fields can be “preconverted” to a different Rust type, so that the resulting type is then used to convert to the Java type. To do so, use the #[jnix(map = "|value| ...")] attribute with a conversion closure.

Fields can be skipped using the #[jnix(skip)] attribute, so that they aren’t used in the conversion process, and therefore not used as a parameter for the constructor. The #[jnix(skip_all)] attribute can be used on the struct to skip all fields.

The target class of a specific field can be set manually with the #[jnix(target_class = "...")] attribute. However, be aware that the target class must have the expected constructor with the parameter list based on the field order of the Rust type.

Enums

The generated IntoJava implementation for a enum that only has unit variants (i.e., no tuple or struct variants) returns a static field value from the specified Java target class. The name used for the static field in the Java class is the same as the Rust variant name. This allows the Rust enum to be mapped to a Java enum.

When an enum has at least one tuple or struct variant, the generated IntoJava implementation will assume that that there is a class hierarchy to represent the type. The target Java class is used as the super class, and is the Java type returned from the conversion. The class is assumed to have one inner class for each variant, and the conversion actually instantiates an object for the respective variant type, using the same rules for the fields as the rules for struct fields.

For both cases, variants can be prevented from being constructed from their respective Java entries or sub-classes by using the #[jnix(deny)] attribute. If one of the entries is used in an attempt to convert to the equivalent Rust variant, the code panics.