pub type Result<T> = Result<T, HyperliquidBacktestError>;
Expand description
Result type alias for consistent error handling throughout the crate
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(HyperliquidBacktestError),
}
pub type Result<T> = Result<T, HyperliquidBacktestError>;
Result type alias for consistent error handling throughout the crate
pub enum Result<T> {
Ok(T),
Err(HyperliquidBacktestError),
}