Creates an owned PathBuf with path adjoined to self. Delegates to [`Path::join`].
(&self, path: impl AsRef<Path>)
| 160 | /// |
| 161 | /// Delegates to [`Path::join`]. |
| 162 | pub fn join(&self, path: impl AsRef<Path>) -> PathBuf { |
| 163 | self.0.join(path) |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | impl AsRef<Path> for InputDir { |
no outgoing calls