#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

#810 in Unix APIs

Download history 73/week @ 2023-12-11 100/week @ 2023-12-18 128/week @ 2023-12-25 171/week @ 2024-01-01 280/week @ 2024-01-08 144/week @ 2024-01-15 153/week @ 2024-01-22 112/week @ 2024-01-29 120/week @ 2024-02-05 123/week @ 2024-02-12 122/week @ 2024-02-19 154/week @ 2024-02-26 122/week @ 2024-03-04 108/week @ 2024-03-11 105/week @ 2024-03-18 83/week @ 2024-03-25

436 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
~80K SLoC