Struct jni::NativeMethod [−][src]
Expand description
Native method descriptor.
Fields
name: JNIString
Name of method.
sig: JNIString
Method signature.
fn_ptr: *mut c_void
Pointer to native function with signature
fn(env: JNIEnv, class: JClass, ...arguments according to sig) -> RetType
for static methods or
fn(env: JNIEnv, object: JObject, ...arguments according to sig) -> RetType
for instance methods.