jnat 0.11.2

A wrapper around the jni crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod array;
pub mod field;
pub mod hello;
pub mod method;
pub mod object_array;
pub mod static_field;
pub mod static_method;

#[derive(Debug)]
pub struct IntegrationTest {
  pub name: &'static str,
  pub lib: &'static str,
  pub java_class: &'static str,
  pub test_fn: fn(String) -> bool,
}

inventory::collect!(IntegrationTest);