Struct rp2040_pac2::resets::Resets[][src]

pub struct Resets(pub *mut u8);

Implementations

impl Resets[src]

pub fn reset(self) -> Reg<Peripherals, RW>[src]

Reset control. If a bit is set it means the peripheral is in reset. 0 means the peripheral’s reset is deasserted.

pub fn wdsel(self) -> Reg<Wdsel, RW>[src]

Watchdog select. If a bit is set then the watchdog will reset this peripheral when the watchdog fires.

pub fn reset_done(self) -> Reg<Peripherals, RW>[src]

Reset done. If a bit is set then a reset done signal has been returned by the peripheral. This indicates that the peripheral’s registers are ready to be accessed.

Trait Implementations

impl Clone for Resets[src]

impl Copy for Resets[src]

impl Send for Resets[src]

impl Sync for Resets[src]

Auto Trait Implementations

impl Unpin for Resets

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.