macro_rules! ensure_eq {
($left:expr, $right:expr $(,)?) => { ... };
($left:expr, $right:expr, $($arg:tt)+) => { ... };
}Expand description
a version of assert_eq! that is more user-friendly.
macro_rules! ensure_eq {
($left:expr, $right:expr $(,)?) => { ... };
($left:expr, $right:expr, $($arg:tt)+) => { ... };
}a version of assert_eq! that is more user-friendly.