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

#799 in Unix APIs

Download history 108/week @ 2024-12-04 119/week @ 2024-12-11 112/week @ 2024-12-18 65/week @ 2024-12-25 104/week @ 2025-01-01 92/week @ 2025-01-08 81/week @ 2025-01-15 73/week @ 2025-01-22 95/week @ 2025-01-29 149/week @ 2025-02-05 111/week @ 2025-02-12 114/week @ 2025-02-19 103/week @ 2025-02-26 118/week @ 2025-03-05 106/week @ 2025-03-12 119/week @ 2025-03-19

459 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–9MB
~77K SLoC