glob
Module: glob
Section titled “Module: glob”Contents
Section titled “Contents”Functions
glob_match- Simple glob matching where*matches any sequence of characters.
firma_secret_provider::glob::glob_match
Section titled “firma_secret_provider::glob::glob_match”Function
Simple glob matching where * matches any sequence of characters.
The wildcard crosses separators: *.example.com matches both
api.example.com and deep.api.example.com, and a bare * matches
everything.
/v1/*/completionsmatches/v1/chat/completions
fn glob_match(pattern: &str, value: &str) -> bool