Converts a Path to an owned PathBuf. Delegates to [`Path::to_path_buf`].
(&self)
| 104 | /// |
| 105 | /// Delegates to [`Path::to_path_buf`]. |
| 106 | pub fn to_path_buf(&self) -> PathBuf { |
| 107 | self.0.to_path_buf() |
| 108 | } |
| 109 | |
| 110 | /// Creates an owned PathBuf with path adjoined to self. |
| 111 | /// |