pub type RunResult<'a, T = ()> = Result<T, Error<'a>>;
enum RunResult<'a, T = ()> { Ok(T), Err(Error<'a>), }
Contains the success value
Contains the error value