1 2 3 4 5 6 7 8 9 10 11 12
use std::path::PathBuf; use std::time::SystemTime; #[derive(Clone, Debug)] pub struct TryDir { pub basename: String, pub path: PathBuf, pub ctime: Option<SystemTime>, pub mtime: Option<SystemTime>, pub score: f64, pub size: Option<u64>, }