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

#835 in Unix APIs

Download history 89/week @ 2024-11-17 93/week @ 2024-11-24 94/week @ 2024-12-01 107/week @ 2024-12-08 121/week @ 2024-12-15 91/week @ 2024-12-22 89/week @ 2024-12-29 93/week @ 2025-01-05 90/week @ 2025-01-12 76/week @ 2025-01-19 72/week @ 2025-01-26 141/week @ 2025-02-02 129/week @ 2025-02-09 113/week @ 2025-02-16 100/week @ 2025-02-23 106/week @ 2025-03-02

467 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

~2.8–9.5MB
~76K SLoC