Struct move_package::resolution::resolution_graph::ResolutionGraph
source · [−]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:
- a
ResolutionGraph
during resolution (some named addresses may yet be instantiated) - 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:
- They can be assigned a value in the declaring package. In this case the value of that named address will always be that value.
- 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: PathBuf
build_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
sourceimpl ResolutionGraph<ResolvingNamedAddress>
impl ResolutionGraph<ResolvingNamedAddress>
pub fn new(
root_package: SourceManifest,
root_package_path: PathBuf,
build_options: BuildConfig
) -> Result<ResolutionGraph<ResolvingNamedAddress>>
pub fn resolve(self) -> Result<ResolvedGraph>
pub fn download_dependency_repos(
manifest: &SourceManifest,
build_options: &BuildConfig,
root_path: &Path
) -> Result<()>
sourceimpl ResolutionGraph<AccountAddress>
impl ResolutionGraph<AccountAddress>
pub fn get_package(&self, package_ident: &PackageName) -> &ResolvedPackage
pub fn print_info(&self) -> Result<()>
pub fn extract_named_address_mapping(
&self
) -> impl Iterator<Item = (Symbol, AccountAddress)> + '_
pub fn file_sources(&self) -> BTreeMap<FileHash, (Symbol, String)>
Trait Implementations
sourceimpl<T: Clone> Clone for ResolutionGraph<T>
impl<T: Clone> Clone for ResolutionGraph<T>
sourcefn clone(&self) -> ResolutionGraph<T>
fn clone(&self) -> ResolutionGraph<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for ResolutionGraph<T> where
T: RefUnwindSafe,
impl<T> Send for ResolutionGraph<T> where
T: Send,
impl<T> Sync for ResolutionGraph<T> where
T: Sync,
impl<T> Unpin for ResolutionGraph<T>
impl<T> UnwindSafe for ResolutionGraph<T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more