macro_rules! assert_set_superset_as_result {
    ($a:expr, $b:expr $(,)?) => { ... };
}
Expand description

Assert a set is a superset of another.

  • If true, return Result Ok(()).

  • Otherwise, return Result Err with a diagnostic message.

This macro provides the same statements as [assert_], except this macro returns a Result, rather than doing a panic.

This macro is useful for runtime checks, such as checking parameters, or santizing inputs, or handling different results in different ways.

This implementation uses [BTreeSet] to count items and sort them.