(s: &T)
| 281 | /// Allocates a [`PathBuf`] and copies the data into it. |
| 282 | #[inline] |
| 283 | fn from(s: &T) -> PathBuf { |
| 284 | PathBuf::from(s.as_ref().to_os_string()) |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | impl From<OsString> for PathBuf { |
nothing calls this directly
no test coverage detected