macro_rules! const_assert_eq_usize {
    ($x:expr, $($y:expr),+ $(,)?) => { ... };
}
Expand description

Asserts that constants of type usize are equal in value.

This is equivalent to const_assert_eq! but allows for inspecting the values in error messages.