Type Alias usb_ids::VideoTerminal
source · pub type VideoTerminal = UsbId<VT_TAG, u16>;
Expand description
Represents a video class terminal type in the USB database.
use usb_ids::{VideoTerminal, FromId};
let video_terminal = VideoTerminal::from_id(0x0101).unwrap();
assert_eq!(video_terminal.name(), "USB Streaming");
Aliased Type§
struct VideoTerminal { /* private fields */ }