pub struct TreeOptions {
    pub cli_features: CliFeatures,
    pub packages: Packages,
    pub target: Target,
    pub edge_kinds: HashSet<EdgeKind>,
    pub invert: Vec<String>,
    pub prefix: Prefix,
    pub no_dedupe: bool,
    pub duplicates: bool,
    pub charset: Charset,
    pub format: String,
    pub graph_features: bool,
}

Fields

cli_features: CliFeaturespackages: Packages

The packages to display the tree for.

target: Target

The platform to filter for.

edge_kinds: HashSet<EdgeKind>

The dependency kinds to display.

invert: Vec<String>prefix: Prefix

The style of prefix for each line.

no_dedupe: bool

If true, duplicates will be repeated. If false, duplicates will be marked with *, and their dependencies won’t be shown.

duplicates: bool

If true, run in a special mode where it will scan for packages that appear with different versions, and report if any where found. Implies invert.

charset: Charset

The style of characters to use.

format: String

A format string indicating how each package should be displayed.

graph_features: bool

Includes features in the tree as separate nodes.

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.

Should always be Self

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.