pub struct DependencyResolution {
pub install_order: Vec<String>,
pub version_map: HashMap<String, String>,
pub unmet_dependencies: Vec<UnmetDependency>,
}Expand description
Result of dependency resolution
Fields§
§install_order: Vec<String>Ordered list of plugins to install (from leaf to root)
version_map: HashMap<String, String>Map of plugin name to specific version to install
unmet_dependencies: Vec<UnmetDependency>Any unmet dependencies
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 moreAuto Trait Implementations§
impl Freeze for DependencyResolution
impl RefUnwindSafe for DependencyResolution
impl Send for DependencyResolution
impl Sync for DependencyResolution
impl Unpin for DependencyResolution
impl UnsafeUnpin 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