Type Alias Result

Source
pub type Result<T> = Result<T, HyperlightError>;
Expand description

The universal Result type used throughout the Hyperlight codebase.

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(HyperlightError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(HyperlightError)

Contains the error value