1 2 3 4 5 6 7 8 9
use std::path::PathBuf; #[derive(Debug)] pub struct OrganizedFile { pub source_path: PathBuf, pub target_path: PathBuf, pub file_name: String, pub size: u64, }