Struct lfs_core::Disk[][src]

pub struct Disk {
    pub name: String,
    pub rotational: Option<bool>,
    pub removable: Option<bool>,
    pub ram: 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

ram: bool

whether it’s a RAM disk

lvm: bool

whether it’s on LVM

crypted: bool

whether it’s a crypted disk

Implementations

a synthetic code trying to express the essence of the type of media, an empty str being returned when information couldn’t be gathered. This code is for humans and may change in future minor versions.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.