pub struct DisassembleOptions {
    pub print: bool,
    pub color: bool,
    pub indent: bool,
    pub show_byte_offset: bool,
    pub no_header: bool,
    pub use_friendly_names: bool,
    pub comment: bool,
}

Fields

print: bool

Print to stdout.

color: bool

Add color codes to output

indent: bool

Indent assembly

show_byte_offset: boolno_header: bool

Do not output the module header as leading comments in the assembly.

use_friendly_names: bool

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: bool

Add some comments to the generated assembly

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns the “default value” for a type. Read more
Converts this type into the (usually inferred) input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.