macro_rules! quiet_assert {
($cond:expr) => { ... };
}Expand description
Quietly asserts that the given condition is true.
If the condition is false, this macro will not panic, and will instead return an error.
macro_rules! quiet_assert {
($cond:expr) => { ... };
}Quietly asserts that the given condition is true.
If the condition is false, this macro will not panic, and will instead return an error.