json-trait-rs 0.5.1

Rust interface (aka trait) to deal with objects as they are JSON objects
Documentation

json-trait-rs

Build on TravisCI Coverage Version

Changelog

Rationale

The goal of this repository is to offer rust interfaces (aka traits) to deal with objects as they are JSON objects.

While dealing with JSON objects in rust we tend to use libraries that takes care of the serialisation and desrialisation process as serde-json or json-rust, but depending on the use-case it's possible that we do need only methodologies to traverse the objects that have been created (so [de]serialised) by other libraries.

The main use-case for this type of library, at least at the time of writing, is to offer JSON objects traversing capability to objects that might be initialised by foreign languages (think to other language bindings, ie. via FFI).

Contribution rules

Coming soon