pub struct RegisterBlock {
    pub CR: RWRegister<u32>,
    pub SR: RORegister<u32>,
    pub RIS: RORegister<u32>,
    pub IER: RWRegister<u32>,
    pub MIS: RORegister<u32>,
    pub ICR: WORegister<u32>,
    pub ESCR: RWRegister<u32>,
    pub ESUR: RWRegister<u32>,
    pub CWSTRT: RWRegister<u32>,
    pub CWSIZE: RWRegister<u32>,
    pub DR: RORegister<u32>,
}

Fields§

§CR: RWRegister<u32>

control register 1

§SR: RORegister<u32>

status register

§RIS: RORegister<u32>

raw interrupt status register

§IER: RWRegister<u32>

interrupt enable register

§MIS: RORegister<u32>

masked interrupt status register

§ICR: WORegister<u32>

interrupt clear register

§ESCR: RWRegister<u32>

embedded synchronization code register

§ESUR: RWRegister<u32>

embedded synchronization unmask register

§CWSTRT: RWRegister<u32>

crop window start

§CWSIZE: RWRegister<u32>

crop window size

§DR: RORegister<u32>

data register

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.