pub struct VersionConflict {
pub dependency_name: String,
pub versions: Vec<String>,
pub description: String,
}Expand description
Represents a version conflict between dependencies
Fields§
§dependency_name: StringName of the dependency
versions: Vec<String>Conflicting versions
description: StringDescription of the conflict
Trait Implementations§
Source§impl Clone for VersionConflict
impl Clone for VersionConflict
Source§fn clone(&self) -> VersionConflict
fn clone(&self) -> VersionConflict
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 VersionConflict
impl RefUnwindSafe for VersionConflict
impl Send for VersionConflict
impl Sync for VersionConflict
impl Unpin for VersionConflict
impl UnwindSafe for VersionConflict
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