()
| 112 | #[must_use] |
| 113 | #[inline] |
| 114 | pub fn new() -> PathBuf { |
| 115 | PathBuf { inner: OsString::new() } |
| 116 | } |
| 117 | |
| 118 | /// Creates a new `PathBuf` with a given capacity used to create the |
| 119 | /// internal [`OsString`]. See [`with_capacity`] defined on [`OsString`]. |