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

pub struct Args {
    // some fields omitted
}

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

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

Trait Implementations

impl Iterator for Args

type Item = String

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

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

impl ExactSizeIterator for Args

fn len(&self) -> usize