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