usb_disk_probe/
lib.rs

1#[macro_use]
2extern crate thiserror;
3
4const DISK_DIR: &str = "/dev/disk/by-path/";
5
6/// Contains an async stream-based version of the USB disk prober.
7pub mod stream;