Enum twiggy_opt::Options[][src]

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

Options for configuring twiggy.

Variants

Top

List the top code size offenders in a binary.

Tuple Fields of Top

0: Top
Dominators

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

Tuple Fields of Dominators

0: Dominators
Paths

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

Tuple Fields of Paths

0: Paths
Monos

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

Tuple Fields of Monos

0: Monos
Diff

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

Tuple Fields of Diff

0: Diff
Garbage

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

Tuple Fields of Garbage

0: Garbage

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Get the input file path.

Get the input data parse mode.

Get the output destination.

Get the output format.

Formats the value using the given formatter. Read more

Returns clap::App corresponding to the struct.

Builds the struct from clap::ArgMatches. It’s guaranteed to succeed if matches originates from an App generated by StructOpt::clap called on the same type, otherwise it must panic. Read more

Builds the struct from the command line arguments (std::env::args_os). Calls clap::Error::exit on failure, printing the error message and aborting the program. Read more

Builds the struct from the command line arguments (std::env::args_os). Unlike StructOpt::from_args, returns clap::Error on failure instead of aborting the program, so calling .exit is up to you. 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

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)

recently added

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.