()
| 456 | /// no daemon service is running to execute it. |
| 457 | #[cfg(unix)] |
| 458 | pub fn daemon_reachable() -> bool { |
| 459 | default_socket_path().is_ok_and(|path| StdUnixStream::connect(path).is_ok()) |
| 460 | } |
| 461 | |
| 462 | /// The daemon (and its scheduler) is unix-only; see [`super::run_foreground`]. |
| 463 | #[cfg(not(unix))] |
no test coverage detected