Struct sysinfo::Disk

source ·
pub struct Disk { /* private fields */ }
Expand description

Struct containing a disk information.

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("{:?}: {:?}", disk.name(), disk.kind());
}

Implementations§

source§

impl Disk

source

pub fn kind(&self) -> DiskKind

Returns the kind of disk.

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("[{:?}] {:?}", disk.name(), disk.kind());
}
source

pub fn name(&self) -> &OsStr

Returns the disk name.

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("{:?}", disk.name());
}
source

pub fn file_system(&self) -> &OsStr

Returns the file system used on this disk (so for example: EXT4, NTFS, etc…).

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("[{:?}] {:?}", disk.name(), disk.file_system());
}
source

pub fn mount_point(&self) -> &Path

Returns the mount point of the disk (/ for example).

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("[{:?}] {:?}", disk.name(), disk.mount_point());
}
source

pub fn total_space(&self) -> u64

Returns the total disk size, in bytes.

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("[{:?}] {}B", disk.name(), disk.total_space());
}
source

pub fn available_space(&self) -> u64

Returns the available disk size, in bytes.

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("[{:?}] {}B", disk.name(), disk.available_space());
}
source

pub fn is_removable(&self) -> bool

Returns true if the disk is removable.

use sysinfo::Disks;

let disks = Disks::new_with_refreshed_list();
for disk in disks.list() {
    println!("[{:?}] {}", disk.name(), disk.is_removable());
}
source

pub fn refresh(&mut self) -> bool

Updates the disk’ information.

use sysinfo::Disks;

let mut disks = Disks::new_with_refreshed_list();
for disk in disks.list_mut() {
    disk.refresh();
}

Trait Implementations§

source§

impl Debug for Disk

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Serialize for Disk

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

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§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.