Trait java_bindgen::interop::JObjectGetters

source ·
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§

source

fn call_getter<T>(&self, name: &str, env: &mut JNIEnv<'l>) -> JResult<T>
where T: JTypeInfo<'l>, JValueGen<JObject<'l>>: IntoRustType<'l, T>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'local> JObjectGetters<'local> for JObject<'local>