File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -601,21 +601,21 @@ pub struct MatchOptions {
601
601
* currently only considers upper/lower case relationships between ASCII characters,
602
602
* but in future this might be extended to work with Unicode.
603
603
*/
604
- case_sensitive : bool ,
604
+ pub case_sensitive : bool ,
605
605
606
606
/**
607
607
* If this is true then path-component separator characters (e.g. `/` on Posix)
608
608
* must be matched by a literal `/`, rather than by `*` or `?` or `[...]`
609
609
*/
610
- require_literal_separator : bool ,
610
+ pub require_literal_separator : bool ,
611
611
612
612
/**
613
613
* If this is true then paths that contain components that start with a `.` will
614
614
* not match unless the `.` appears literally in the pattern: `*`, `?` or `[...]`
615
615
* will not match. This is useful because such files are conventionally considered
616
616
* hidden on Unix systems and it might be desirable to skip them when listing files.
617
617
*/
618
- require_literal_leading_dot : bool
618
+ pub require_literal_leading_dot : bool
619
619
}
620
620
621
621
impl MatchOptions {
You can’t perform that action at this time.
0 commit comments