pub enum DiskType {
HDD,
SSD,
Unknown(isize),
}
Expand description
Enum containing the different supported disks types.
This type is returned by Disk::get_type
.
use sysinfo::{System, SystemExt, DiskExt};
let system = System::new_all();
for disk in system.disks() {
println!("{:?}: {:?}", disk.name(), disk.type_());
}
Variants
HDD
HDD type.
SSD
SSD type.
Unknown(isize)
Unknown type.
Trait Implementations
impl Copy for DiskType
impl Eq for DiskType
impl StructuralEq for DiskType
impl StructuralPartialEq for DiskType
Auto Trait Implementations
impl RefUnwindSafe for DiskType
impl Send for DiskType
impl Sync for DiskType
impl Unpin for DiskType
impl UnwindSafe for DiskType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more