rustc_test

Type Alias OptRes

Source
pub type OptRes = Result<TestOpts, String>;
Expand description

Result of parsing the options.

Aliased Type§

enum OptRes {
    Ok(TestOpts),
    Err(String),
}

Variants§

§1.0.0

Ok(TestOpts)

Contains the success value

§1.0.0

Err(String)

Contains the error value