pub trait JObjectGetters<'l> {
// Required method
fn call_getter<T>(&self, name: &str, env: &mut JNIEnv<'l>) -> JResult<T>
where T: JTypeInfo<'l>,
JValueGen<JObject<'l>>: IntoRustType<'l, T>;
}
Required Methods§
fn call_getter<T>(&self, name: &str, env: &mut JNIEnv<'l>) -> JResult<T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.