(path: &Path)
| 296 | |
| 297 | #[cfg(all(unix, test))] |
| 298 | fn is_reachable_unix_socket(path: &Path) -> bool { |
| 299 | is_unix_socket(path) && std::os::unix::net::UnixStream::connect(path).is_ok() |
| 300 | } |
| 301 | |
| 302 | #[cfg(all(unix, target_os = "linux"))] |
| 303 | fn current_uid() -> u32 { |
nothing calls this directly
no test coverage detected