macro_rules! ensure {
($condition:expr, $($args: tt)+) => { ... };
}
Expand description
A simple macro for checking a condition. Resembles anyhow::ensure.
macro_rules! ensure {
($condition:expr, $($args: tt)+) => { ... };
}
A simple macro for checking a condition. Resembles anyhow::ensure.