Idiomatic Rust bindings to the JAB Code standard implementation.
```rust let image = jabcode::writejabcode( "Hello world".asbytes(), &jabcode::WriteOptions::default()).unwrap();
let buf = jabcode::readjabcode(&image).unwrap(); let output = String::fromutf8(buf).unwrap(); assert_eq!("Hello world", output); ```