Struct std::env::SplitPathsUnstable [-] [+] [src]

pub struct SplitPaths<'a> {
    // some fields omitted
}

An iterator over Path instances for parsing an environment variable according to platform-specific conventions.

This structure is returned from std::env::split_paths.

Trait Implementations

impl<'a> Iterator for SplitPaths<'a>

type Item = Path

fn next(&mut self) -> Option<Path>

fn size_hint(&self) -> (usize, Option<usize>)