(path: &Path)
| 234 | |
| 235 | #[cfg(unix)] |
| 236 | fn is_unix_socket(path: &Path) -> bool { |
| 237 | path.metadata() |
| 238 | .is_ok_and(|metadata| metadata.file_type().is_socket()) |
| 239 | } |
| 240 | |
| 241 | #[cfg(unix)] |
| 242 | fn podman_socket_responds(path: &Path) -> bool { |
no test coverage detected