pub type TestResult<T> = Result<T, TestError>;
enum TestResult<T> { Ok(T), Err(TestError), }
Contains the success value
Contains the error value