pub trait IntoJavaValue<'j, J: 'j> {
    fn into_java_value(self, env: JNIEnv<'j>) -> JValue<'j>;
}
Expand description

Convert from Rust type into JValue

Required Methods

Implementations on Foreign Types

Implementors