macro_rules! match_some_return {
($opt:expr) => { ... };
($opt:expr,$r:expr) => { ... };
}Expand description
match Option
if is Some, will be return value
if is Nome, will be return custom value and exit method
macro_rules! match_some_return {
($opt:expr) => { ... };
($opt:expr,$r:expr) => { ... };
}match Option
if is Some, will be return value
if is Nome, will be return custom value and exit method