Struct getopts::OptGroup [] [src]

pub struct OptGroup {
    pub short_name: String,
    pub long_name: String,
    pub hint: String,
    pub desc: String,
    pub hasarg: HasArg,
    pub occur: Occur,
}
Unstable (rustc_private)

: use the crates.io getopts library instead

One group of options, e.g., both -h and --help, along with their shared description and properties.

Fields

short_name: String
Unstable (rustc_private)

: use the crates.io getopts library instead

Short name of the option, e.g. h for a -h option

long_name: String
Unstable (rustc_private)

: use the crates.io getopts library instead

Long name of the option, e.g. help for a --help option

hint: String
Unstable (rustc_private)

: use the crates.io getopts library instead

Hint for argument, e.g. FILE for a -o FILE option

desc: String
Unstable (rustc_private)

: use the crates.io getopts library instead

Description for usage help text

hasarg: HasArg
Unstable (rustc_private)

: use the crates.io getopts library instead

Whether option has an argument

occur: Occur
Unstable (rustc_private)

: use the crates.io getopts library instead

How often it can occur

Methods

impl OptGroup
[src]

fn long_to_short(&self) -> Opt

Unstable (rustc_private)

: use the crates.io getopts library instead

Translate OptGroup into Opt. (Both short and long names correspond to different Opts).

Trait Implementations

Derived Implementations

impl Debug for OptGroup
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Eq for OptGroup
[src]

impl PartialEq for OptGroup
[src]

fn eq(&self, __arg_0: &OptGroup) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &OptGroup) -> bool

This method tests for !=.

impl Clone for OptGroup
[src]

fn clone(&self) -> OptGroup

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more