[][src]Struct twiggy_opt::Dominators

pub struct Dominators { /* fields omitted */ }

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

Methods

impl Dominators[src]

pub fn items(&self) -> &[String][src]

The items whose dominators subtree should be printed.

impl Dominators[src]

pub fn new() -> Dominators[src]

Construct a new, default Dominators.

pub fn max_depth(&self) -> u32[src]

The maximum depth to print the dominators tree.

pub fn max_rows(&self) -> u32[src]

The maximum number of rows, regardless of depth in the tree, to display.

pub fn using_regexps(&self) -> bool[src]

Whether or not items should be treated as regular expressions.

pub fn set_max_depth(&mut self, max_depth: u32)[src]

Set the maximum depth to print the dominators tree.

pub fn set_max_rows(&mut self, max_rows: u32)[src]

Set the maximum number of rows, regardless of depth in the tree, to display.

pub fn set_using_regexps(&mut self, using_regexps: bool)[src]

Set whether or not items should be treated as regular expressions.

Trait Implementations

impl CommonCliOptions for Dominators[src]

impl Clone for Dominators[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Dominators[src]

impl Debug for Dominators[src]

impl StructOpt for Dominators[src]

fn from_args() -> Self[src]

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

fn from_iter<I>(iter: I) -> Self where
    I: IntoIterator,
    <I as IntoIterator>::Item: Into<OsString>,
    <I as IntoIterator>::Item: Clone
[src]

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

fn from_iter_safe<I>(iter: I) -> Result<Self, Error> where
    I: IntoIterator,
    <I as IntoIterator>::Item: Into<OsString>,
    <I as IntoIterator>::Item: Clone
[src]

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

Auto Trait Implementations

impl Send for Dominators

impl Sync for Dominators

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]