1 2 3 4 5 6 7
use std::{path::PathBuf, time::SystemTime}; #[derive(Debug, Clone)] pub(crate) struct ResourceInfo { pub last_modified: SystemTime, pub path: PathBuf, }