jni 0.21.1

Rust bindings to the JNI
Documentation
use crate::{
    descriptors::Desc,
    errors::*,
    objects::{JClass, JFieldID, JStaticFieldID},
    strings::JNIString,
    JNIEnv,
};

unsafe impl<'local, 'other_local, T, U, V> Desc<'local, JFieldID> for (T, U, V)
where
    T: Desc<'local, JClass<'other_local>>,
    U: Into<JNIString>,
    V: Into<JNIString>,
{
    type Output = JFieldID;

    fn lookup(self, env: &mut JNIEnv<'local>) -> Result<Self::Output> {
        env.get_field_id(self.0, self.1, self.2)
    }
}

unsafe impl<'local, 'other_local, T, U, V> Desc<'local, JStaticFieldID> for (T, U, V)
where
    T: Desc<'local, JClass<'other_local>>,
    U: Into<JNIString>,
    V: Into<JNIString>,
{
    type Output = JStaticFieldID;

    fn lookup(self, env: &mut JNIEnv<'local>) -> Result<Self::Output> {
        env.get_static_field_id(self.0, self.1, self.2)
    }
}