#usb-device #usb #probe #devices #linux

usb-disk-probe

Provides a stream type which can be used to probe for USB storage devices in the system

2 unstable releases

0.2.0 Nov 3, 2022
0.1.0 Dec 13, 2019

#794 in Unix APIs

Download history 251/week @ 2024-01-05 185/week @ 2024-01-12 140/week @ 2024-01-19 139/week @ 2024-01-26 109/week @ 2024-02-02 115/week @ 2024-02-09 127/week @ 2024-02-16 145/week @ 2024-02-23 138/week @ 2024-03-01 106/week @ 2024-03-08 114/week @ 2024-03-15 93/week @ 2024-03-22 125/week @ 2024-03-29 89/week @ 2024-04-05 110/week @ 2024-04-12 88/week @ 2024-04-19

427 downloads per month

MIT/Apache

9KB
67 lines

usb-disk-probe

Crates.io

Provides a stream type which can be used to probe for USB storage devices in the system.

Example

use usb_disk_probe::stream::UsbDiskProbe;

use futures::stream::StreamExt;

fn main() {
    futures::executor::block_on(async move {
        let mut stream = UsbDiskProbe::new().await.unwrap();
        while let Some(device_result) = stream.next().await {
            let device = device_result.unwrap();
            println!("{}", device.display());
        }
    });
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~3–4.5MB
~79K SLoC