#[non_exhaustive]pub struct InstructionFormat<'a> {
pub prefer_non_abi_reg_names: bool,
pub prefer_unaliased: bool,
pub jump_target_formatter: Option<&'a dyn Fn(u32, &mut Formatter<'_>) -> Result>,
pub is_64_bit: bool,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.prefer_non_abi_reg_names: bool§prefer_unaliased: bool§jump_target_formatter: Option<&'a dyn Fn(u32, &mut Formatter<'_>) -> Result>§is_64_bit: boolTrait Implementations§
Source§impl<'a> Clone for InstructionFormat<'a>
impl<'a> Clone for InstructionFormat<'a>
Source§fn clone(&self) -> InstructionFormat<'a>
fn clone(&self) -> InstructionFormat<'a>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<'a> Freeze for InstructionFormat<'a>
impl<'a> !RefUnwindSafe for InstructionFormat<'a>
impl<'a> !Send for InstructionFormat<'a>
impl<'a> !Sync for InstructionFormat<'a>
impl<'a> Unpin for InstructionFormat<'a>
impl<'a> !UnwindSafe for InstructionFormat<'a>
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