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),
}pub type Result<T> = Result<T, HyperlightError>;The universal Result type used throughout the Hyperlight codebase.
enum Result<T> {
Ok(T),
Err(HyperlightError),
}