Result

Type Alias Result 

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(EngineError)

Contains the error value