pub struct DependencyResolution {
pub dependencies: Vec<Dependency>,
pub conflicts: Vec<String>,
pub missing: Vec<String>,
}Expand description
Result of dependency resolution operation.
Contains all resolved dependencies along with any conflicts or missing packages discovered during the resolution process.
Fields§
§dependencies: Vec<Dependency>Resolved dependencies with status.
conflicts: Vec<String>Packages that have conflicts.
missing: Vec<String>Packages that are missing.
Trait Implementations§
Source§impl Clone for DependencyResolution
impl Clone for DependencyResolution
Source§fn clone(&self) -> DependencyResolution
fn clone(&self) -> DependencyResolution
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 moreSource§impl Debug for DependencyResolution
impl Debug for DependencyResolution
Source§impl Default for DependencyResolution
impl Default for DependencyResolution
Source§fn default() -> DependencyResolution
fn default() -> DependencyResolution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DependencyResolution
impl<'de> Deserialize<'de> for DependencyResolution
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DependencyResolution
impl RefUnwindSafe for DependencyResolution
impl Send for DependencyResolution
impl Sync for DependencyResolution
impl Unpin for DependencyResolution
impl UnwindSafe for DependencyResolution
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