identity-diff 0.5.0

The `Diff` trait for the identity-rs library.
Documentation
1
2
3
4
5
6
This module implements a `Diff` trait type.  The Diff trait gives data structures an ability to compare
themselves to another data structure of the same type over time.  The library pairs off with `identity_derive` which
implements a derive macro for the `Diff` Trait. Types supported include `HashMap`, `Option`, `String`,
`serde_json::Value`, `Vec` and primitives such as `i8`/`u8` up to `usize` and `isize` as well as the unit type `()`,
`bool`, and `char` types.  Structs and Enums are supported via `identity_diff_derive` and can be composed of any number
of these types.