pub struct Disk {
pub name: String,
pub rotational: Option<bool>,
pub removable: Option<bool>,
pub read_only: Option<bool>,
pub ram: bool,
pub image: bool,
pub lvm: bool,
pub crypted: bool,
}
Expand description
what we have most looking like a physical device
Fields§
§name: String
a name, like “sda”, “sdc”, “nvme0n1”, etc.
rotational: Option<bool>
true for HDD, false for SSD, None for unknown. This information isn’t reliable for USB devices
removable: Option<bool>
whether the system thinks the media is removable. Seems reliable when not mapped
read_only: Option<bool>
whether the disk is read-only
ram: bool
whether it’s a RAM disk
image: bool
disk image (Mac only right now)
lvm: bool
whether it’s on LVM
crypted: bool
whether it’s a crypted disk
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Disk
impl RefUnwindSafe for Disk
impl Send for Disk
impl Sync for Disk
impl Unpin for Disk
impl UnwindSafe for Disk
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