Trait AsReg

Source
pub trait AsReg: Clone + Debug {
    // Required methods
    fn new(enc: u8) -> Self;
    fn enc(&self) -> u8;

    // Provided method
    fn to_string(&self, size: Option<Size>) -> String { ... }
}
Expand description

Describe how to interact with an external register type.

Required Methods§

Source

fn new(enc: u8) -> Self

Create a register from its hardware encoding.

This is primarily useful for fuzzing, though it is also useful for generating fixed registers.

Source

fn enc(&self) -> u8

Return the register’s hardware encoding; e.g., 0 for %rax.

Provided Methods§

Source

fn to_string(&self, size: Option<Size>) -> String

Return the register name.

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.

Implementations on Foreign Types§

Source§

impl AsReg for u8

Provide a convenient implementation for testing.

Source§

fn new(enc: u8) -> Self

Source§

fn enc(&self) -> u8

Implementors§