Struct rp2040_pac2::watchdog::regs::Load[][src]

#[repr(transparent)]pub struct Load(pub u32);

Load the watchdog timer. The maximum setting is 0xffffff which corresponds to 0xffffff / 2 ticks before triggering a watchdog reset (see errata RP2040-E1).

Implementations

impl Load[src]

pub const fn load(&self) -> u32[src]

pub fn set_load(&mut self, val: u32)[src]

Trait Implementations

impl Clone for Load[src]

impl Copy for Load[src]

impl Default for Load[src]

Auto Trait Implementations

impl Send for Load

impl Sync for Load

impl Unpin for Load

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.