Struct iced_x86::FormatterOperandOptions
source · [−]pub struct FormatterOperandOptions { /* private fields */ }
Expand description
Operand options
Implementations
sourceimpl FormatterOperandOptions
impl FormatterOperandOptions
sourcepub fn branch_size(&self) -> bool
pub fn branch_size(&self) -> bool
Show branch size (eg. SHORT
, NEAR PTR
)
sourcepub fn set_branch_size(&mut self, value: bool)
pub fn set_branch_size(&mut self, value: bool)
sourcepub fn rip_relative_addresses(&self) -> bool
pub fn rip_relative_addresses(&self) -> bool
If true
, show RIP
relative addresses as [rip+12345678h]
, else show the linear address eg. [1029384756AFBECDh]
sourcepub fn set_rip_relative_addresses(&mut self, value: bool)
pub fn set_rip_relative_addresses(&mut self, value: bool)
If true
, show RIP
relative addresses as [rip+12345678h]
, else show the linear address eg. [1029384756AFBECDh]
Arguments
value
: New value
sourcepub fn memory_size_options(&self) -> MemorySizeOptions
pub fn memory_size_options(&self) -> MemorySizeOptions
Memory size options
sourcepub fn set_memory_size_options(&mut self, value: MemorySizeOptions)
pub fn set_memory_size_options(&mut self, value: MemorySizeOptions)
Trait Implementations
sourceimpl Clone for FormatterOperandOptions
impl Clone for FormatterOperandOptions
sourcefn clone(&self) -> FormatterOperandOptions
fn clone(&self) -> FormatterOperandOptions
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FormatterOperandOptions
impl Debug for FormatterOperandOptions
sourceimpl Default for FormatterOperandOptions
impl Default for FormatterOperandOptions
sourcefn default() -> FormatterOperandOptions
fn default() -> FormatterOperandOptions
Returns the “default value” for a type. Read more
sourceimpl Hash for FormatterOperandOptions
impl Hash for FormatterOperandOptions
sourceimpl PartialEq<FormatterOperandOptions> for FormatterOperandOptions
impl PartialEq<FormatterOperandOptions> for FormatterOperandOptions
sourcefn eq(&self, other: &FormatterOperandOptions) -> bool
fn eq(&self, other: &FormatterOperandOptions) -> bool
impl Copy for FormatterOperandOptions
impl Eq for FormatterOperandOptions
impl StructuralEq for FormatterOperandOptions
impl StructuralPartialEq for FormatterOperandOptions
Auto Trait Implementations
impl RefUnwindSafe for FormatterOperandOptions
impl Send for FormatterOperandOptions
impl Sync for FormatterOperandOptions
impl Unpin for FormatterOperandOptions
impl UnwindSafe for FormatterOperandOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more