pub enum MemorySpeed {
Unknown,
SeeExtendedSpeed,
MTs(u16),
}
Expand description
§Speed of Memory
Variants§
Unknown
Memory Speed is Unknown
SeeExtendedSpeed
The speed is 65,535 MT/s or greater, and the actual speed is stored in the ‘extended_speed’ field
MTs(u16)
The maximum capable speed of the device, in megatransfers per second (MT/s)
Trait Implementations§
Source§impl Debug for MemorySpeed
impl Debug for MemorySpeed
Source§impl From<u16> for MemorySpeed
impl From<u16> for MemorySpeed
Auto Trait Implementations§
impl Freeze for MemorySpeed
impl RefUnwindSafe for MemorySpeed
impl Send for MemorySpeed
impl Sync for MemorySpeed
impl Unpin for MemorySpeed
impl UnwindSafe for MemorySpeed
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