Convert Rust data structures to/from (relatively) idiomatic Clojure data in memory using JNI.
See test/src/lib.rs for a usage example.
```rust
struct MyStruct {
number: i32,
names: Vec
becomes
clojure
{:number 3
:names ["foo" "bar"]}
```
Vec<u8>
, you should annotate or wrap
the field with serde_bytes,
or you will end up with a vector of java.lang.Short
, which might
not be what you wanted and isn't very efficient.