std::path::windows::StrComponentsExperimental
[-]
[+]
[src]
type StrComponents<'a> = Map<&'a str, Option<&'a str>, SplitTerminator<'a, char>, fn(&'a str) -> Option<&'a str>>;
Iterator that yields successive components of a Path as &str
Each component is yielded as Option<&str> for compatibility with PosixPath, but every component in WindowsPath is guaranteed to be Some.