Enum gong::analysis::DataLocation[][src]

pub enum DataLocation {
    SameArg,
    NextArg,
}

Used to describe where data was located, for options that require data.

Variants

Found in the same argument (after an = for long options, or the remaining characters for a short option).

Found in the next argument.

Trait Implementations

impl Debug for DataLocation
[src]

Formats the value using the given formatter. Read more

impl Clone for DataLocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for DataLocation
[src]

impl PartialEq for DataLocation
[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 DataLocation
[src]

Auto Trait Implementations