(start: P, landmarks: &[&str])
| 96 | /// Search upward for a directory landmark |
| 97 | #[cfg(not(windows))] |
| 98 | fn search_up_dir<P: AsRef<Path>>(start: P, landmarks: &[&str]) -> Option<PathBuf> { |
| 99 | search_up(start, landmarks, |p| p.is_dir()) |
| 100 | } |
| 101 | |
| 102 | // Path computation functions |
| 103 |
no test coverage detected