#[repr(u8)]pub enum DescriptorType {
Show 20 variants
Device = 1,
Configuration = 2,
String = 3,
Interface = 4,
Endpoint = 5,
DeviceQualifier = 6,
OtherSpeedConfiguration = 7,
InterfacePower = 8,
OnTheGo = 9,
Debug = 10,
InterfaceAssociation = 11,
Security = 12,
Key = 13,
EncryptionType = 14,
BinaryDeviceObjectStore = 15,
DeviceCapability = 16,
WirelessEndpointCompanion = 17,
ClassSpecific = 36,
SuperSpeedEndpointCompanion = 48,
Unknown = 255,
}Expand description
USB descriptor type.
Variants§
Device = 1
Configuration = 2
String = 3
Interface = 4
Endpoint = 5
DeviceQualifier = 6
OtherSpeedConfiguration = 7
InterfacePower = 8
OnTheGo = 9
Debug = 10
InterfaceAssociation = 11
Security = 12
Key = 13
EncryptionType = 14
BinaryDeviceObjectStore = 15
DeviceCapability = 16
WirelessEndpointCompanion = 17
ClassSpecific = 36
SuperSpeedEndpointCompanion = 48
Unknown = 255
Trait Implementations§
Source§impl Clone for DescriptorType
impl Clone for DescriptorType
Source§fn clone(&self) -> DescriptorType
fn clone(&self) -> DescriptorType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescriptorType
impl Debug for DescriptorType
Source§impl From<u8> for DescriptorType
impl From<u8> for DescriptorType
Source§impl PartialEq for DescriptorType
impl PartialEq for DescriptorType
impl Copy for DescriptorType
impl StructuralPartialEq for DescriptorType
Auto Trait Implementations§
impl Freeze for DescriptorType
impl RefUnwindSafe for DescriptorType
impl Send for DescriptorType
impl Sync for DescriptorType
impl Unpin for DescriptorType
impl UnwindSafe for DescriptorType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more