pub fn watchdog_enabled() -> Option<Duration>Expand description
Asks the service manager for enabled watchdog.
See sd_watchdog_enabled(3) for details.
ยงExample
if let Some(duration) = sd_notify::watchdog_enabled() {
// watchdog enabled with `duration`
} else {
// watchdog disabled
}