pub type EngineTestApplyResult = Result<String, i32>;
enum EngineTestApplyResult { Ok(String), Err(i32), }
Contains the success value
Contains the error value