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