| 145 | } |
| 146 | |
| 147 | pub trait CargoPathExt { |
| 148 | fn rm_rf(&self); |
| 149 | fn mkdir_p(&self); |
| 150 | |
| 151 | /// Returns a list of all files and directories underneath the given |
| 152 | /// directory, recursively, including the starting path. |
| 153 | fn ls_r(&self) -> Vec<PathBuf>; |
| 154 | } |
| 155 | |
| 156 | impl CargoPathExt for Path { |
| 157 | fn rm_rf(&self) { |
nothing calls this directly
no outgoing calls
no test coverage detected