RegisterBlock

Struct RegisterBlock 

Source
pub struct RegisterBlock {
Show 15 fields pub evt_mode: EVT_MODE, pub desc: DESC, pub int_group0_iidx: INT_GROUP0_IIDX, pub int_group0_imask: INT_GROUP0_IMASK, pub int_group0_ris: INT_GROUP0_RIS, pub int_group0_mis: INT_GROUP0_MIS, pub int_group0_iset: INT_GROUP0_ISET, pub int_group0_iclr: INT_GROUP0_ICLR, pub int_group1_iidx: INT_GROUP1_IIDX, pub int_group1_imask: INT_GROUP1_IMASK, pub int_group1_ris: INT_GROUP1_RIS, pub int_group1_mis: INT_GROUP1_MIS, pub int_group1_iset: INT_GROUP1_ISET, pub int_group1_iclr: INT_GROUP1_ICLR, pub ctl: CTL, /* private fields */
}
Expand description

Register block

Fields§

§evt_mode: EVT_MODE

0x10e0 - Event Mode

§desc: DESC

0x10fc - Module Description

§int_group0_iidx: INT_GROUP0_IIDX

0x1100 - Interrupt index

§int_group0_imask: INT_GROUP0_IMASK

0x1108 - Interrupt mask

§int_group0_ris: INT_GROUP0_RIS

0x1110 - Raw interrupt status

§int_group0_mis: INT_GROUP0_MIS

0x1118 - Masked interrupt status

§int_group0_iset: INT_GROUP0_ISET

0x1120 - Interrupt set

§int_group0_iclr: INT_GROUP0_ICLR

0x1128 - Interrupt clear

§int_group1_iidx: INT_GROUP1_IIDX

0x1130 - Interrupt index

§int_group1_imask: INT_GROUP1_IMASK

0x1138 - Interrupt mask

§int_group1_ris: INT_GROUP1_RIS

0x1140 - Raw interrupt status

§int_group1_mis: INT_GROUP1_MIS

0x1148 - Masked interrupt status

§int_group1_iset: INT_GROUP1_ISET

0x1150 - Interrupt set

§int_group1_iclr: INT_GROUP1_ICLR

0x1158 - Interrupt clear

§ctl: CTL

0x1300 - Prefetch/Cache control

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.