Module path_matchers

Source
Expand description

Reexport path-matchers.

Macros§

any
Checks any of matchers is true.

Structs§

PatternError
A pattern parsing error.

Traits§

PathMatcher
Allows to match a path against implemented condition.
PathMatcherExt
Extends PathMatcher with combinator functions.

Functions§

and
Checks both matchers are true.
any_of
Checks any of matchers in iterator is true.
equal
Checks a path for exact match.
func
Creates matcher based on function.
glob
Matches file paths against Unix shell style patterns.
not
Reverts the match condition of the underlying matcher.
or
Checks at least one of two matchers is true.
starts_with
Checks a path starts with another path.