macro_rules! or_continue_quiet {
($label:tt, $expr:expr $(,)?) => { ... };
($expr:expr $(,)?) => { ... };
}Expand description
Unwrap on success, or quietly discard the failure and continue.
Accepts an optional ’label as the first argument.