pub fn matches_glob(pattern: &str, name: &str) -> boolExpand description
Match name against a glob-like pattern where * is a wildcard matching any
run of characters (including empty). No character classes, escapes, or ?.
Examples:
get_*matchesget_issues,get_merge_requests*_issuematchescreate_issue,update_issue*matches everythingexactmatches onlyexact