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