Skip to content

Commit 78e74c9

Browse files
committed
Update for namespaced enums.
1 parent a469534 commit 78e74c9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ use std::io::fs::{mod, PathExtensions};
3434
use std::path::is_sep;
3535
use std::string::String;
3636

37+
use PatternToken::{Char, AnyChar, AnySequence, AnyWithin, AnyExcept};
38+
use CharSpecifier::{SingleChar, CharRange};
39+
use MatchResult::{Match, SubPatternDoesntMatch, EntirePatternDoesntMatch};
40+
3741
/// An iterator that yields Paths from the filesystem that match a particular
3842
/// pattern - see the `glob` function for more details.
3943
pub struct Paths {

0 commit comments

Comments
 (0)