pub enum DisassembleOptions {
None,
Print,
Color,
Indent,
ShowByteOffset,
NoHeader,
FriendlyNames,
Comment,
}
Variants§
None
Print to stdout
Color
Add color codes to output
Indent
Indent assembly
ShowByteOffset
NoHeader
Do not output the module header as leading comments in the assembly.
FriendlyNames
Use friendly names where possible. The heuristic may expand over time, but will use common names for scalar types, and debug names from OpName instructions.
Comment
Add some comments to the generated assembly
Auto Trait Implementations§
impl RefUnwindSafe for DisassembleOptions
impl Send for DisassembleOptions
impl Sync for DisassembleOptions
impl Unpin for DisassembleOptions
impl UnwindSafe for DisassembleOptions
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