pub enum DiskKind {
SSD,
HDD,
NVME,
USB,
}Expand description
A struct representing the kind of disk (SSD, HDD, etc.)
Variants§
Trait Implementations§
impl StructuralPartialEq for DiskKind
Auto Trait Implementations§
impl Freeze for DiskKind
impl RefUnwindSafe for DiskKind
impl Send for DiskKind
impl Sync for DiskKind
impl Unpin for DiskKind
impl UnwindSafe for DiskKind
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