pub struct Options {
    pub normalize: bool,
    pub strip_hex: bool,
}
Expand description

Configure the generated output.

All options default to off.

Fields

normalize: bool

Normalize the first profile count to match the second.

This can help in scenarios where you take profiles at different times, under varying load. If you generate a differential flame graph without setting this flag, everything will look red if the load increased, or blue if it decreased. If this flag is set, the first profile is balanced so you get the full red/blue spectrum.

strip_hex: bool

Strip hex numbers (addresses) of the form “0x45ef2173” and replace with “0x…”.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.