Enum twiggy_opt::Options[][src]

pub enum Options {
    Top(Top),
    Dominators(Dominators),
    Paths(Paths),
    Monos(Monos),
    Diff(Diff),
    Garbage(Garbage),
}

Options for configuring twiggy.

Variants

List the top code size offenders in a binary.

Compute and display the dominator tree for a binary's call graph.

Find and display the call paths to a function in the given binary's call graph.

List the generic function monomorphizations that are contributing to code bloat.

Diff the old and new versions of a binary to see what sizes changed.

Find and display code and data that is not transitively referenced by any exports or public functions.

Trait Implementations

impl Clone for Options
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Options
[src]

Formats the value using the given formatter. Read more

impl StructOpt for Options
[src]

Returns the corresponding clap::App.

Creates the struct from clap::ArgMatches. It cannot fail with a parameter generated by clap by construction. Read more

Gets the struct from the command line arguments. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Read more

impl CommonCliOptions for Options
[src]

Get the input file path.

Get the output destination.

Get the output format.

Auto Trait Implementations

impl Send for Options

impl Sync for Options