Enum rusb::Speed [−][src]
#[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.
The operating system doesn’t know the device speed.
The device is operating at low speed (1.5 Mbps).
The device is operating at full speed (12 Mbps).
The device is operating at high speed (480 Mbps).
The device is operating at super speed (5 Gbps).
The device is operating at super speed (10 Gbps).
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Speed
impl UnwindSafe for Speed
Blanket Implementations
Mutably borrows from an owned value. Read more