pub type Phy = UsbId<PHY_TAG, u8>;Expand description
Represents physical descriptor item type in the USB database.
use usb_ids::{Phy, FromId};
let phy = Phy::from_id(0x25).unwrap();
assert_eq!(phy.name(), "Fifth Toe");Aliased Type§
pub struct Phy { /* private fields */ }