or_return

Macro or_return 

Source
macro_rules! or_return {
    ($return:expr, $expr:expr $(,)?) => { ... };
    ($expr:expr $(,)?) => { ... };
}
Expand description

Unwrap on success, or log the failure and return.

Returns Default::default() unless an initial argument is provided to return instead.