Assure: macros for Rust runtime checks and error handling

This Rust crate provides the macro assure! and its friends. These are similar to the macro assert! and its friends.

Macros for simple values

Macro for truth checking:

Macros for value comparison:

Macros for iterator set comparison

These macros help with order-independent comparison of iterator set parameters, such as comparison of two arrays, or two vectors.

Macros for IO-related checking

These macros help with IO-related checking, such as comparison of files, streams, etc. These macros return a Result with Ok(true) or Err(std::io::Error(…)).

Macro for truth checking:

Macros for value comparison: