Coerces to a Path slice. Delegates to [`PathBuf::as_path`].
(&self)
| 146 | /// |
| 147 | /// Delegates to [`PathBuf::as_path`]. |
| 148 | pub fn as_path(&self) -> &Path { |
| 149 | self.0.as_path() |
| 150 | } |
| 151 | |
| 152 | /// Converts a Path to an owned PathBuf. |
| 153 | /// |
no outgoing calls