Expand description
See what’s different in arbitrary data structures.
The main diff algorithm.
we implement here is less than a screen full of lines, yet it enables a vast amount of
applications.
It can work with all values implementing the Value trait.
On top of it there is a merge implementation, which can be used to aggregate changes
into a target value. It works with Values which implement the Mutable trait.
§Usage
Please have a look at the tests for diff and merge.
Also note that you will have to choose the features to build the library with in order to
get trait implementations for Value types of common libraries,
i.e. cargo build --features=with-serde-json.
Modules§
- tools
- Various tools to help making the
diffalgorithm useful with minimal effort. - value
- Contains all implementations of the
ValueandMutabletraits.
Traits§
- Delegate
- The delegate receiving callbacks by the
diffalgorithm, which compares an old to a new value. - Mutable
- A trait to allow changing any
Value. - Value
- Represents a scalar value or an associative array.
Functions§
- diff
- A generic diff algorithm suitable for
Valuetypes as seen in serialization/deserialization libraries.