1 2 3 4 5 6 7 8
extern crate diskinfo; use diskinfo::get_disks; fn main() { if let Err(e) = get_disks() { eprintln!("error: {}", e); } }