(message: impl Into<String>)
| 590 | } |
| 591 | |
| 592 | fn invalid_input(message: impl Into<String>) -> io::Error { |
| 593 | io::Error::new(io::ErrorKind::InvalidInput, message.into()) |
| 594 | } |
| 595 | |
| 596 | fn path_parent(path: &Path) -> &Path { |
| 597 | path.parent().unwrap_or_else(|| Path::new("")) |
no outgoing calls
no test coverage detected