macro_rules! or_return { ($return:expr, $expr:expr $(,)?) => { ... }; ($expr:expr $(,)?) => { ... }; }
Expand description
Unwrap or return with a warning.
Returns Default::default() unless an initial argument is provided to return instead.
macro_rules! or_return { ($return:expr, $expr:expr $(,)?) => { ... }; ($expr:expr $(,)?) => { ... }; }
Unwrap or return with a warning.
Returns Default::default() unless an initial argument is provided to return instead.