pub struct ResolutionGraph<T> {
    pub root_package_path: PathBuf,
    pub build_options: BuildConfig,
    pub root_package: SourceManifest,
    pub graph: DiGraphMap<PackageName, ()>,
    pub package_table: BTreeMap<PackageName, ResolutionPackage<T>>,
}
Expand description

A ResolutionGraph comes in two flavors:

  1. a ResolutionGraph during resolution (some named addresses may yet be instantiated)
  2. a ResolvedGraph which is a graph after resolution in which all named addresses have been assigned a value.

Named addresses can be assigned values in a couple different ways:

  1. They can be assigned a value in the declaring package. In this case the value of that named address will always be that value.
  2. Can be left unassigned in the declaring package. In this case it can receive its value through unification across the package graph.

Named addresses can also be renamed in a package and will be re-exported under thes new names in this case.

Fields

root_package_path: PathBufbuild_options: BuildConfig

Build options

root_package: SourceManifest

Root package

graph: DiGraphMap<PackageName, ()>

Dependency graph

package_table: BTreeMap<PackageName, ResolutionPackage<T>>

A mapping of package name to its resolution

Implementations

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

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 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.