#[repr(C)]
pub struct MAILBOX { pub rxdata: RXDATA, pub rxstatus: RXSTATUS, pub txdata: TXDATA, pub txstatus: TXSTATUS, /* private fields */ }
Expand description

Register block

Fields

rxdata: RXDATA

0x00 - Data sent from the debugger to the CPU.

rxstatus: RXSTATUS

0x04 - This register shows a status that indicates if data sent from the debugger to the CPU has been read.

txdata: TXDATA

0x80 - Data sent from the CPU to the debugger.

txstatus: TXSTATUS

0x84 - This register shows a status that indicates if the data sent from the CPU to the debugger has been read.

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.