[][src]Struct vtil_parser::ImmediateDesc

pub struct ImmediateDesc { /* fields omitted */ }

Describes a VTIL immediate value in an operand

Implementations

impl ImmediateDesc[src]

pub fn bit_count(&self) -> u32[src]

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

impl ImmediateDesc[src]

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

Access the underlying immediate as an i64

pub fn i64(&self) -> i64[src]

Access the underlying immediate as a u64

Trait Implementations

impl Debug for ImmediateDesc[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for ImmediateDesc[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, 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.