claims

Macro debug_assert_matches

Source
macro_rules! debug_assert_matches {
    ($($arg:tt)*) => { ... };
}
Expand description

Asserts that the expression matches the provided pattern on debug builds.

This macro behaves the same as assert_matches! on debug builds. On release builds it is a no-op.