Type Alias OptPartRes

Source
type OptPartRes<T> = Result<T, String>;
🔬This is a nightly-only experimental API. (test)
Expand description

Result of parsing the option part.

Aliased Type§

enum OptPartRes<T> {
    Ok(T),
    Err(String),
}

Variants§

§

Ok(T)

🔬This is a nightly-only experimental API. (test)

Contains the success value

§

Err(String)

🔬This is a nightly-only experimental API. (test)

Contains the error value