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