Struct Args

Source
pub struct Args<T> { /* private fields */ }
Expand description

A stream of arguments.

Implementations§

Source§

impl<T> Args<T>

Source

pub fn from(args: T) -> Self

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);
}
Source

pub fn rest(self) -> T

Get the remaining unparsed arguments in the stream.

Source§

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

Source

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

Get the next argument in the stream.

Auto Trait Implementations§

§

impl<T> Freeze for Args<T>
where T: Freeze,

§

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§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.