macro_rules! always_some {
({ $($conditions:tt)* }, $message:literal, { $($details:tt)* }) => { ... };
({ $($conditions:tt)* }, $message:literal) => { ... };
}Expand description
Asserts at least one of the named conditions always holds, with per-name guidance.