#[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>,
}
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>
Trait Implementations§
Source§impl<'a> Default for InstructionFormat<'a>
impl<'a> Default for InstructionFormat<'a>
Source§fn default() -> InstructionFormat<'a>
fn default() -> InstructionFormat<'a>
Returns the “default value” for a type. Read more
Auto 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