Struct rp2040_pac2::rtc::regs::IrqSetup0[][src]

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

Interrupt setup register 0

Implementations

impl IrqSetup0[src]

pub const fn match_active(&self) -> bool[src]

pub fn set_match_active(&mut self, val: bool)[src]

pub const fn match_ena(&self) -> bool[src]

Global match enable. Don’t change any other value while this one is enabled

pub fn set_match_ena(&mut self, val: bool)[src]

Global match enable. Don’t change any other value while this one is enabled

pub const fn year_ena(&self) -> bool[src]

Enable year matching

pub fn set_year_ena(&mut self, val: bool)[src]

Enable year matching

pub const fn month_ena(&self) -> bool[src]

Enable month matching

pub fn set_month_ena(&mut self, val: bool)[src]

Enable month matching

pub const fn day_ena(&self) -> bool[src]

Enable day matching

pub fn set_day_ena(&mut self, val: bool)[src]

Enable day matching

pub const fn year(&self) -> u16[src]

Year

pub fn set_year(&mut self, val: u16)[src]

Year

pub const fn month(&self) -> u8[src]

Month (1..12)

pub fn set_month(&mut self, val: u8)[src]

Month (1..12)

pub const fn day(&self) -> u8[src]

Day of the month (1..31)

pub fn set_day(&mut self, val: u8)[src]

Day of the month (1..31)

Trait Implementations

impl Clone for IrqSetup0[src]

impl Copy for IrqSetup0[src]

impl Default for IrqSetup0[src]

Auto Trait Implementations

impl Send for IrqSetup0

impl Sync for IrqSetup0

impl Unpin for IrqSetup0

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.