pub type Result<T> = Result<T, HyperlightError>;Expand description
The universal Result type used throughout the Hyperlight codebase.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(HyperlightError),
}pub type Result<T> = Result<T, HyperlightError>;The universal Result type used throughout the Hyperlight codebase.
pub enum Result<T> {
Ok(T),
Err(HyperlightError),
}