selective_assertions 0.3.0

Macros for asserting equality of structs with the flexibility to exclude or focus on specific fields.
Documentation
1
2
3
4
5
6
7
8
9
10
pub use paste::paste;

extern crate paste;

pub mod impls;

#[allow(unused_imports)]
pub use impls::assert_eq_excluding::*;
#[allow(unused_imports)]
pub use impls::assert_eq_selected::*;