Creates an owned PathBuf with path adjoined to self. Delegates to [`Path::join`].
(&self, path: impl AsRef<Path>)
| 111 | /// |
| 112 | /// Delegates to [`Path::join`]. |
| 113 | pub fn join(&self, path: impl AsRef<Path>) -> PathBuf { |
| 114 | self.0.join(path) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | impl AsRef<Path> for ExistingAbsoluteDir { |
no outgoing calls