Expand description
Wrapper types for MMIO fields.
Structsยง
- Read
Only - Wrapper for a field which may safely be read but not written. Reading may cause side-effects, changing the state of the device in some way.
- Read
Pure - Wrapper for a field which may safely be read with no side-effects but not written.
- Read
Pure Write - Wrapper for a field which may safely be written (with side-effects) and read with no side-effects.
- Read
Write - Wrapper for a field which may safely be written and read. Reading may cause side-effects, changing the state of the device in some way.
- Write
Only - Wrapper for a field which may safely be written but not read.