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

pub struct ArgsOs {
    // some fields omitted
}

An iterator over the arguments of a process, yielding an OsString value for each argument.

This structure is created through the std::env::args_os method.

Trait Implementations

impl Iterator for ArgsOs

type Item = OsString

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

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

impl ExactSizeIterator for ArgsOs

fn len(&self) -> usize