1 2 3 4 5 6 7 8
macro_rules! unwrap_opt_or_return { ($opt:expr, $err:expr) => { match $opt { Some(val) => val, None => return $err, }; }; }