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