Struct vtil_parser::RegisterDesc[][src]

pub struct RegisterDesc {
    pub flags: RegisterFlags,
    pub combined_id: u64,
    pub bit_count: i32,
    pub bit_offset: i32,
}

Describes a VTIL register in an operand

Fields

flags: RegisterFlags

Flags describing the register

combined_id: u64

Identifier for this register, use RegisterDesc::local_id

bit_count: i32

The bit count of this register (e.g.: 32)

bit_offset: i32

The bit offset of register access

Implementations

impl RegisterDesc[src]

pub fn local_id(&self) -> u64[src]

Local identifier that is intentionally unique to this register

pub fn arch_id(&self) -> ArchitectureIdentifier[src]

The underlying architecture of this register

Trait Implementations

impl Debug for RegisterDesc[src]

impl Display for RegisterDesc[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for RegisterDesc[src]

type Error = Error

impl TryIntoCtx<Endian, [u8]> for RegisterDesc[src]

type Error = Error

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.