pub type EngineResult<T> = Result<T, EngineError>;Expand description
Convenience Result with EngineError as the error type.
Aliased Type§
pub enum EngineResult<T> {
Ok(T),
Err(EngineError),
}pub type EngineResult<T> = Result<T, EngineError>;Convenience Result with EngineError as the error type.
pub enum EngineResult<T> {
Ok(T),
Err(EngineError),
}