Macro ensure_ok_result

Source
macro_rules! ensure_ok_result {
    ( [] ) => { ... };
    ( [(return_result_from_ensure_ok) $($rest:tt)*] ) => { ... };
    ( [$other:tt $($modifiers:tt)*] ) => { ... };
}