pub struct ResolutionResult {
pub install_order: Vec<String>,
pub missing_tools: Vec<String>,
pub available_tools: Vec<String>,
pub circular_dependencies: Vec<Vec<String>>,
pub version_conflicts: Vec<VersionConflict>,
}
Expand description
Result of dependency resolution
Fields§
§install_order: Vec<String>
Installation order (dependencies first)
missing_tools: Vec<String>
Tools that need to be installed
available_tools: Vec<String>
Tools that are already available
circular_dependencies: Vec<Vec<String>>
Circular dependencies detected
version_conflicts: Vec<VersionConflict>
Version conflicts
Trait Implementations§
Source§impl Clone for ResolutionResult
impl Clone for ResolutionResult
Source§fn clone(&self) -> ResolutionResult
fn clone(&self) -> ResolutionResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ResolutionResult
impl RefUnwindSafe for ResolutionResult
impl Send for ResolutionResult
impl Sync for ResolutionResult
impl Unpin for ResolutionResult
impl UnwindSafe for ResolutionResult
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