Trait RegisterName

Source
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§

Source

type Value: RegisterValue

The value type associated with the register.

Required Methods§

Source

fn as_abi(&self) -> WHV_REGISTER_NAME

The ABI register name.

Implementors§