[][src]Struct pargs::Pargs

pub struct Pargs {
    pub command_args: Vec<String>,
    pub flag_args: Vec<String>,
    pub option_args: HashMap<String, String>,
}

maintains args that are successfully parsed and returns them to the calling program

Fields

command_args: Vec<String>flag_args: Vec<String>option_args: HashMap<String, String>

Implementations

impl Pargs[src]

pub fn parse(
    actual_args: Vec<String>,
    command_args: Vec<String>,
    flag_args: Vec<String>,
    option_args: Vec<String>
) -> Result<Pargs, Error>
[src]

parses arguments in relation to expected optional and required arguments

Trait Implementations

impl Debug for Pargs[src]

impl PartialEq<Pargs> for Pargs[src]

impl StructuralPartialEq for Pargs[src]

Auto Trait Implementations

impl RefUnwindSafe for Pargs

impl Send for Pargs

impl Sync for Pargs

impl Unpin for Pargs

impl UnwindSafe for Pargs

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.