1 unstable release

0.1.0 Feb 15, 2024

#308 in Unix APIs

Download history 107/week @ 2024-02-11 43/week @ 2024-02-18 23/week @ 2024-02-25 1/week @ 2024-03-03 22/week @ 2024-03-31 2/week @ 2024-04-07 36/week @ 2024-04-14

60 downloads per month

LGPL-2.1

185KB
4.5K SLoC

Udisks

An unofficial Rust client crate for udisks2. Udisks allows accessing and manipulating disks, storages devices and similar technologies.

[!WARNING] This project is very early in it's development cycle and far from being finished. Issues and API breaks should be expected.

Example

// we use tokio in this example, but you can use any runtime
#[tokio::main]
async fn main() -> zbus::Result<()> {
    let client = udisks2::Client::new().await?;
    let object = client
        .object("/org/freedesktop/UDisks2/block_devices/sda")
        .expect("No sda device found");
    let block = object.block().await?;
    let drive = client.drive_for_block(&block).await?;
    println!(
        "Size: {}",
        client.size_for_display(drive.size().await?, true, true)
    );
    Ok(())
}

Documentation

While this crate provides documentation for the handwritten code, the generated types may be lacking. In this case it is recommended to use the official documentation.

Dependencies

~11–22MB
~336K SLoC