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