Struct iced_x86::FormatterOperandOptions
source · pub struct FormatterOperandOptions { /* private fields */ }
Expand description
Operand options
Implementations§
source§impl FormatterOperandOptions
impl FormatterOperandOptions
sourcepub const fn branch_size(&self) -> bool
pub const 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 const fn rip_relative_addresses(&self) -> bool
pub const 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§
source§impl Clone for FormatterOperandOptions
impl Clone for FormatterOperandOptions
source§fn clone(&self) -> FormatterOperandOptions
fn clone(&self) -> FormatterOperandOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FormatterOperandOptions
impl Debug for FormatterOperandOptions
source§impl Default for FormatterOperandOptions
impl Default for FormatterOperandOptions
source§fn default() -> FormatterOperandOptions
fn default() -> FormatterOperandOptions
Returns the “default value” for a type. Read more
source§impl Hash for FormatterOperandOptions
impl Hash for FormatterOperandOptions
source§impl PartialEq for FormatterOperandOptions
impl PartialEq for FormatterOperandOptions
source§fn eq(&self, other: &FormatterOperandOptions) -> bool
fn eq(&self, other: &FormatterOperandOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more