#[non_exhaustive]
pub enum Speed {
Unknown,
Low,
Full,
High,
Super,
SuperPlus,
}
Expand description
Device speeds. Indicates the speed at which a device is operating.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unknown
The operating system doesn’t know the device speed.
Low
The device is operating at low speed (1.5 Mbps).
Full
The device is operating at full speed (12 Mbps).
High
The device is operating at high speed (480 Mbps).
Super
The device is operating at super speed (5 Gbps).
SuperPlus
The device is operating at super speed (10 Gbps).