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