#[repr(C)]
pub struct Registers { pub cs: ReadWrite<u32, Register>, pub clo: ReadOnly<u32>, pub chi: ReadOnly<u32>, pub c: [ReadWrite<u32>; 4], }

Fields

cs: ReadWrite<u32, Register>

Control/status

clo: ReadOnly<u32>

Counter lower 32 bits

chi: ReadOnly<u32>

Counter higher 32 bits

c: [ReadWrite<u32>; 4]

Compare 0..4

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.

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.