diff options
Diffstat (limited to 'src/libstd/path/windows.rs')
| -rw-r--r-- | src/libstd/path/windows.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstd/path/windows.rs b/src/libstd/path/windows.rs index 913b314c00b..be83a519807 100644 --- a/src/libstd/path/windows.rs +++ b/src/libstd/path/windows.rs @@ -13,14 +13,16 @@ use ascii::AsciiCast; use c_str::{CString, ToCStr}; use cast; +use clone::Clone; +use container::Container; use cmp::Eq; use from_str::FromStr; use iter::{AdditiveIterator, DoubleEndedIterator, Extendable, Invert, Iterator, Map}; use option::{Option, Some, None}; use str; -use str::{CharSplitIterator, OwnedStr, Str, StrVector}; +use str::{CharSplitIterator, OwnedStr, Str, StrVector, StrSlice}; use to_bytes::IterBytes; -use vec::Vector; +use vec::{Vector, OwnedVector, ImmutableVector}; use super::{contains_nul, BytesContainer, GenericPath, GenericPathUnsafe}; /// Iterator that yields successive components of a Path as &str |
