pubmodcache;usecrate::path::config::cache::RegexCache;/// Configuration to adjust the jsonpath search
#[derive(Clone, Default)]pubstructJsonPathConfig{/// cache to provide
pubregex_cache: RegexCache,
}implJsonPathConfig{pubfnnew(regex_cache: RegexCache)->Self{Self{ regex_cache }}}