Enum gumdrop::ParsingStyle [] [src]

pub enum ParsingStyle {
    AllOptions,
    StopAtFirstFree,
}

Controls behavior of free arguments in Parser

Variants

Process all option arguments that appear

After the first "free" argument is encountered, all remaining arguments will be considered "free" arguments.

Trait Implementations

impl Copy for ParsingStyle
[src]

impl Clone for ParsingStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParsingStyle
[src]

Formats the value using the given formatter.

impl Eq for ParsingStyle
[src]

impl PartialEq for ParsingStyle
[src]

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

This method tests for !=.

impl Default for ParsingStyle
[src]

Returns the default parsing style, AllOptions.