pub struct ResolvedDependencies {
pub packages: Vec<String>,
pub resolver: ResolverKind,
pub unknown_packages: Vec<String>,
}Expand description
Result of the dependency resolution pipeline.
Fields§
§packages: Vec<String>Resolved package names (pip/npm installable).
resolver: ResolverKindWhich resolver layer produced the result.
unknown_packages: Vec<String>Packages not found in the whitelist (non-empty only when allow_unknown=false).
Trait Implementations§
Source§impl Clone for ResolvedDependencies
impl Clone for ResolvedDependencies
Source§fn clone(&self) -> ResolvedDependencies
fn clone(&self) -> ResolvedDependencies
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 ResolvedDependencies
impl RefUnwindSafe for ResolvedDependencies
impl Send for ResolvedDependencies
impl Sync for ResolvedDependencies
impl Unpin for ResolvedDependencies
impl UnsafeUnpin for ResolvedDependencies
impl UnwindSafe for ResolvedDependencies
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