#probe #usb #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

#873 in Unix APIs

Download history 144/week @ 2025-06-14 152/week @ 2025-06-21 155/week @ 2025-06-28 410/week @ 2025-07-05 216/week @ 2025-07-12 189/week @ 2025-07-19 183/week @ 2025-07-26 227/week @ 2025-08-02 145/week @ 2025-08-09 116/week @ 2025-08-16 121/week @ 2025-08-23 164/week @ 2025-08-30 142/week @ 2025-09-06 192/week @ 2025-09-13 194/week @ 2025-09-20 156/week @ 2025-09-27

709 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–13MB
~116K SLoC