[][src]Struct argue::ArgParser

pub struct ArgParser<'a> { /* fields omitted */ }

Contains all the data and arguments of the project

Implementations

impl<'a> ArgParser<'a>[src]

pub fn print_help(&self) -> Option<()>[src]

Prints the help message

pub fn print_version(&self) -> Option<()>[src]

Print the version message

pub fn get(&self, key: &str) -> Option<String>[src]

Function that given a key returns the corresponding value if the argument is found and has a value asociated, returns it

Trait Implementations

impl<'a> Debug for ArgParser<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ArgParser<'a>

impl<'a> Send for ArgParser<'a>

impl<'a> Sync for ArgParser<'a>

impl<'a> Unpin for ArgParser<'a>

impl<'a> UnwindSafe for ArgParser<'a>

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.