Type Alias show_notes::e010::TryResult

source ·
pub type TryResult = Result<i32, &'static str>;
Expand description

Trivial alias for Result for convenience.

Aliased Type§

enum TryResult {
    Ok(i32),
    Err(&'static str),
}

Variants§

§1.0.0

Ok(i32)

Contains the success value

§1.0.0

Err(&'static str)

Contains the error value