modified 0.1.2

Keep track of changes in your variables
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented1 out of 1 items with examples
  • Size
  • Source code size: 11.57 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.48 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • sy1ntexx

Modified

Keep track of changes in your variables. Can work without standard library by default!

Installation

[dependencies]

modified = "0.1.0"

Example

use modified::Modified;

let mut var = Modified::new(15);
*var = 20;
// Or
// var.set(20);
assert!(var.is_modified());