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