#[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).
Trait Implementations§
source§impl PartialEq for Speed
impl PartialEq for Speed
impl Copy for Speed
impl Eq for Speed
impl StructuralPartialEq for Speed
Auto Trait Implementations§
impl Freeze for Speed
impl RefUnwindSafe for Speed
impl Send for Speed
impl Sync for Speed
impl Unpin for Speed
impl UnwindSafe for Speed
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