#[repr(u8)]pub enum WatchdogTimeout {
Cycles8 = 0,
Cycles16 = 1,
Cycles32 = 2,
Cycles64 = 3,
Cycles128 = 4,
Cycles256 = 5,
Cycles512 = 6,
Cycles1K = 7,
Cycles2K = 8,
Cycles4K = 9,
Cycles8K = 10,
Cycles16K = 11,
}
Expand description
WatchdogTimeout enumerates usable values for configuring the timeout of the watchdog peripheral.
Variants§
Cycles8 = 0
Cycles16 = 1
Cycles32 = 2
Cycles64 = 3
Cycles128 = 4
Cycles256 = 5
Cycles512 = 6
Cycles1K = 7
Cycles2K = 8
Cycles4K = 9
Cycles8K = 10
Cycles16K = 11
Trait Implementations§
Source§impl Clone for WatchdogTimeout
impl Clone for WatchdogTimeout
Source§fn clone(&self) -> WatchdogTimeout
fn clone(&self) -> WatchdogTimeout
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WatchdogTimeout
impl Debug for WatchdogTimeout
Source§impl PartialEq for WatchdogTimeout
impl PartialEq for WatchdogTimeout
impl Copy for WatchdogTimeout
impl Eq for WatchdogTimeout
impl StructuralPartialEq for WatchdogTimeout
Auto Trait Implementations§
impl Freeze for WatchdogTimeout
impl RefUnwindSafe for WatchdogTimeout
impl Send for WatchdogTimeout
impl Sync for WatchdogTimeout
impl Unpin for WatchdogTimeout
impl UnwindSafe for WatchdogTimeout
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