assert_matches 1.5.0

Asserts that a value matches a pattern
Documentation
#[macro_use(debug_assert_matches)]
extern crate assert_matches;

#[test]
fn test_assert_succeed() {
    let a = 42u32;

    debug_assert_matches!(a, 42);
}