(path: &Path)
| 1069 | } |
| 1070 | |
| 1071 | fn path_to_str(path: &Path) -> &str { |
| 1072 | path.to_str().expect("Failed to convert Path to &str") |
| 1073 | } |
| 1074 | |
| 1075 | fn os_str_to_str(os_str: &OsStr) -> &str { |
| 1076 | os_str.to_str().expect("Failed to convert OsStr to &str") |
no test coverage detected