(root: &Path)
| 6 | |
| 7 | pub type FileSig = String; |
| 8 | |
| 9 | #[derive(Default)] |
| 10 | struct ProjectScanJob { |
| 11 | running: bool, |
| 12 | ready: Option<ProjectScan>, |
| 13 | } |
| 14 | |
| 15 | pub struct ProjectScan { |
| 16 | pub before: Vec<FileSig>, |
| 17 | pub next: Vec<FileSig>, |
| 18 | pub changed: Vec<String>, |
| 19 | pub res_paths: Vec<String>, |
nothing calls this directly
no test coverage detected