pub type HidResult<T> = Result<T, HidError>;
enum HidResult<T> { Ok(T), Err(HidError), }
Contains the success value
Contains the error value