macro_rules! soft_assert_no_log {
($cond:expr $(, $($arg:tt)+)?) => { ... };
}
Available on crate feature
assert
only.Expand description
Asserts that a condition is true if soft assertions are enabled.
Soft assertions have a small runtime cost even when disabled. See
ore::assert
for details.