[][src]Struct exonum::helpers::fabric::Argument

pub struct Argument {
    pub name: &'static str,
    pub argument_type: ArgumentType,
    pub required: bool,
    pub help: &'static str,
}

Abstraction to represent arguments in command line.

Fields

name: &'static str

Name of the current argument. This name is used in context.arg(name).

argument_type: ArgumentType

Explains how this argument is represented.

required: bool

Explains if the argument required or not.

help: &'static str

Help message.

Methods

impl Argument
[src]

pub fn new_named<T>(
    name: &'static str,
    required: bool,
    help: &'static str,
    short_name: T,
    long_name: &'static str,
    multiple: bool
) -> Self where
    T: Into<Option<&'static str>>, 
[src]

Creates a new argument with long and optionally short names.

pub fn new_positional(
    name: &'static str,
    required: bool,
    help: &'static str
) -> Self
[src]

Creates a new positional argument.

Trait Implementations

impl Copy for Argument
[src]

impl Clone for Argument
[src]

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

Performs copy-assignment from source. Read more

impl Debug for Argument
[src]

Auto Trait Implementations

impl Send for Argument

impl Sync for Argument

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self