Is there a Rust module or crate that provides a way to iterate over the removable drives that are attached to a Windows machine? I am running an embedded version of Windows 7 x64. The drives I want to detect are USB-connected flash-drives.
I am primarily a C# developer with C/C++ experience in the distant past, and am new to Rust and it is still seeming a bit opaque to me, so sorry for the newbie question. I am not seeing this in the Crates.io nor in the std::fs module.
I need something such as a vector of the attached removable drives (or a vector of objects each of which represents a drive plus some way to get the properties of that drive, specifically it's drive-letter and whether it is removable).
Thank you in advance for your time and help!