pub trait DebugAddressRegister {
const NUM: DebugAddressRegisterNumber;
// Required methods
fn read() -> u64;
fn write(addr: u64);
}Expand description
Debug Address Register
Holds the address of a hardware breakpoint.
Required Associated Constants§
Sourceconst NUM: DebugAddressRegisterNumber
const NUM: DebugAddressRegisterNumber
The corresponding DebugAddressRegisterNumber.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.