Crates.io | usb-disk-probe |
lib.rs | usb-disk-probe |
version | 0.2.0 |
source | src |
created_at | 2019-12-13 00:19:19.387935 |
updated_at | 2022-11-03 15:53:42.345655 |
description | Provides a stream type which can be used to probe for USB storage devices in the system. |
homepage | |
repository | https://github.com/pop-os/usb-disk-probe |
max_upload_size | |
id | 188942 |
size | 23,637 |
Provides a stream type which can be used to probe for USB storage devices in the system.
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());
}
});
}
Licensed under either of
at your option.
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.