pub enum DiskTechnology {
HDD,
SSD,
}Expand description
Contains SSD and HDD
(don’t trust this thing because usb sticks are also recognized as HDD)
Variants§
Trait Implementations§
Source§impl Clone for DiskTechnology
impl Clone for DiskTechnology
Source§fn clone(&self) -> DiskTechnology
fn clone(&self) -> DiskTechnology
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 DiskTechnology
impl Debug for DiskTechnology
Source§impl Default for DiskTechnology
impl Default for DiskTechnology
Source§fn default() -> DiskTechnology
fn default() -> DiskTechnology
Returns the “default value” for a type. Read more
Source§impl PartialEq for DiskTechnology
impl PartialEq for DiskTechnology
impl StructuralPartialEq for DiskTechnology
Auto Trait Implementations§
impl Freeze for DiskTechnology
impl RefUnwindSafe for DiskTechnology
impl Send for DiskTechnology
impl Sync for DiskTechnology
impl Unpin for DiskTechnology
impl UnwindSafe for DiskTechnology
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