[][src]Struct simpleargs::Args

pub struct Args<T> { /* fields omitted */ }

A stream of arguments.

Methods

impl<T> Args<T>[src]

pub fn from(args: T) -> Self[src]

Create an argument stream from an argument iterator. The program name should not be included in the argument stream.

use std::env;
use simpleargs::Args;
fn main() {
    let mut args_os = env::args_os();
    args_os.next(); // Discard program name.
    let args = Args::from(args_os);
}

pub fn rest(self) -> T[src]

Get the remaining unparsed arguments in the stream.

impl<T> Args<T> where
    T: Iterator,
    <T as Iterator>::Item: ArgString
[src]

pub fn next<'a>(&'a mut self) -> Arg<'a, T>[src]

Get the next argument in the stream.

Auto Trait Implementations

impl<T> RefUnwindSafe for Args<T> where
    T: RefUnwindSafe

impl<T> Send for Args<T> where
    T: Send

impl<T> Sync for Args<T> where
    T: Sync

impl<T> Unpin for Args<T> where
    T: Unpin

impl<T> UnwindSafe for Args<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.