pub enum DisassembleOptions {
None = 1,
Print = 2,
Color = 4,
Indent = 8,
ShowByteOffset = 16,
NoHeader = 32,
FriendlyNames = 64,
Comment = 128,
}
Variants§
None = 1
Print = 2
Print to stdout
Color = 4
Add color codes to output
Indent = 8
Indent assembly
ShowByteOffset = 16
NoHeader = 32
Do not output the module header as leading comments in the assembly.
FriendlyNames = 64
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 = 128
Add some comments to the generated assembly
Auto Trait Implementations§
impl Freeze for DisassembleOptions
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