pub struct ResolvedGraph {
pub install_plan: Vec<ResolvedDependency>,
pub build_dependency_opt_paths: Vec<PathBuf>,
pub runtime_dependency_opt_paths: Vec<PathBuf>,
pub resolution_details: HashMap<String, ResolvedDependency>,
}Fields§
§install_plan: Vec<ResolvedDependency>§build_dependency_opt_paths: Vec<PathBuf>§runtime_dependency_opt_paths: Vec<PathBuf>§resolution_details: HashMap<String, ResolvedDependency>Implementations§
Source§impl ResolvedGraph
impl ResolvedGraph
Trait Implementations§
Source§impl Clone for ResolvedGraph
impl Clone for ResolvedGraph
Source§fn clone(&self) -> ResolvedGraph
fn clone(&self) -> ResolvedGraph
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResolvedGraph
impl Debug for ResolvedGraph
Source§impl Default for ResolvedGraph
impl Default for ResolvedGraph
Source§fn default() -> ResolvedGraph
fn default() -> ResolvedGraph
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResolvedGraph
impl RefUnwindSafe for ResolvedGraph
impl Send for ResolvedGraph
impl Sync for ResolvedGraph
impl Unpin for ResolvedGraph
impl UnwindSafe for ResolvedGraph
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more