pub type Result<T> = Result<T, EngineError>;Expand description
A specialized Result type for engine operations.
This is defined as std::result::Result<T, EngineError> for convenience.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(EngineError),
}