pub trait _embedded_hal_watchdog_WatchdogEnable {
type Time;
// Required method
fn start<T>(&mut self, period: T)
where T: Into<Self::Time>;
}
Expand description
Enables A watchdog timer to reset the processor if software is frozen or stalled.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.