equal
deleted
inserted
replaced
36 #[derive(Debug, Copy, Clone, PartialEq, Eq)] |
36 #[derive(Debug, Copy, Clone, PartialEq, Eq)] |
37 pub enum PatternSyntax { |
37 pub enum PatternSyntax { |
38 Regexp, |
38 Regexp, |
39 /// Glob that matches at the front of the path |
39 /// Glob that matches at the front of the path |
40 RootGlob, |
40 RootGlob, |
41 /// Glob that matches at any suffix of the path (still anchored at slashes) |
41 /// Glob that matches at any suffix of the path (still anchored at |
|
42 /// slashes) |
42 Glob, |
43 Glob, |
43 Path, |
44 Path, |
44 RelPath, |
45 RelPath, |
45 RelGlob, |
46 RelGlob, |
46 RelRegexp, |
47 RelRegexp, |