pub trait RegisterName {
type Value: RegisterValue;
// Required method
fn as_abi(&self) -> WHV_REGISTER_NAME;
}
Expand description
Trait implemented by register name types.
Required Associated Types§
Sourcetype Value: RegisterValue
type Value: RegisterValue
The value type associated with the register.
Required Methods§
Sourcefn as_abi(&self) -> WHV_REGISTER_NAME
fn as_abi(&self) -> WHV_REGISTER_NAME
The ABI register name.