macro_rules! debug_assert_id {
( $( $arg : tt )+ ) => { ... };
}Expand description
Errors handling.
Macro asserts that two expressions are identical to each other. Unlike std::assert_eq it is removed from a release build.
macro_rules! debug_assert_id {
( $( $arg : tt )+ ) => { ... };
}Errors handling.
Macro asserts that two expressions are identical to each other. Unlike std::assert_eq it is removed from a release build.