Type Alias getopts::Result

source ·
pub type Result = Result<Matches, Fail>;
Expand description

The result of parsing a command line with a set of options.

Aliased Type§

enum Result {
    Ok(Matches),
    Err(Fail),
}

Variants§

§1.0.0

Ok(Matches)

Contains the success value

§1.0.0

Err(Fail)

Contains the error value