Struct getopts::Matches [] [src]

pub struct Matches {
    pub free: Vec<String>,
    // some fields omitted
}

The result of checking command line arguments. Contains a vector of matches and a vector of free strings.

Fields

Free string fragments

Methods

impl Matches
[src]

Returns true if an option was matched.

Returns the number of times an option was matched.

Returns true if any of several options were matched.

Returns the string argument supplied to one of several matching options or None.

Returns a vector of the arguments provided to all matches of the given option.

Used when an option accepts multiple values.

Returns the string argument supplied to a matching option or None.

Returns the matching string, a default, or None.

Returns None if the option was not present, def if the option was present but no argument was provided, and the argument if the option was present and an argument was provided.

Trait Implementations

impl Clone for Matches
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Matches
[src]

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

This method tests for !=.

impl Eq for Matches
[src]