[][src]Struct clapme::ArgInfo

pub struct ArgInfo<'a> {
    pub name: &'a str,
    pub required: bool,
    pub required_flags: &'a [&'a str],
    pub conflicted_flags: Vec<String>,
    pub required_unless_one: Vec<String>,
    pub multiple: bool,
    pub help: &'a str,
}

Information needed to set up an argument.

Fields

name: &'a str

The name of the argument, which is also its long flag.

required: bool

Is the argument required?

required_flags: &'a [&'a str]

Flags that are required by this argument.

conflicted_flags: Vec<String>

Flags that are in conflict with this argument.

required_unless_one: Vec<String>

Flag is required unless one of these other flags is present.

multiple: bool

Can we repeat the flag?

help: &'a str

Help string (if any)

Methods

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

pub fn new(name: &'a str) -> Self[src]

A new ArgInfo with sensible defaults.

Trait Implementations

impl<'a> Clone for ArgInfo<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a> Send for ArgInfo<'a>

impl<'a> Unpin for ArgInfo<'a>

impl<'a> Sync for ArgInfo<'a>

impl<'a> UnwindSafe for ArgInfo<'a>

impl<'a> RefUnwindSafe for ArgInfo<'a>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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