[][src]Struct rp2040::psm::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub frce_on: FRCE_ON,
    pub frce_off: FRCE_OFF,
    pub wdsel: WDSEL,
    pub done: DONE,
}

Register block

Fields

frce_on: FRCE_ON

0x00 - Force block out of reset (i.e. power it on)

frce_off: FRCE_OFF

0x04 - Force into reset (i.e. power it off)

wdsel: WDSEL

0x08 - Set to 1 if this peripheral should be reset when the watchdog fires.

done: DONE

0x0c - Indicates the peripheral's registers are ready to access.

Auto Trait Implementations

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.