#[repr(C)]pub struct DummyWatchdogControlBlock {}
Trait Implementations§
source§impl WatchdogController for DummyWatchdogControlBlock
impl WatchdogController for DummyWatchdogControlBlock
source§fn enable(&mut self, _min_gap: WatchdogPeriod, _max_gap: WatchdogPeriod)
fn enable(&mut self, _min_gap: WatchdogPeriod, _max_gap: WatchdogPeriod)
Start the watchdog timer. Once this method has been called, you must
be sure to call the kick() function at least every
max_gap
ms, but
no quicker than min_gap
ms, or the watchdog will reset the processor.Auto Trait Implementations§
impl Freeze for DummyWatchdogControlBlock
impl RefUnwindSafe for DummyWatchdogControlBlock
impl Send for DummyWatchdogControlBlock
impl Sync for DummyWatchdogControlBlock
impl Unpin for DummyWatchdogControlBlock
impl UnwindSafe for DummyWatchdogControlBlock
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more