pub enum ConfigConflict {
AmbiguousMatch {
configured: Vec<ConfiguredPackage>,
discovered: Vec<DiscoveredPackage>,
},
ResolverChanged {
configured: ConfiguredPackage,
discovered: DiscoveredPackage,
},
}Variants§
Trait Implementations§
Source§impl Clone for ConfigConflict
impl Clone for ConfigConflict
Source§fn clone(&self) -> ConfigConflict
fn clone(&self) -> ConfigConflict
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConfigConflict
impl Debug for ConfigConflict
impl Eq for ConfigConflict
Source§impl Ord for ConfigConflict
impl Ord for ConfigConflict
Source§fn cmp(&self, other: &ConfigConflict) -> Ordering
fn cmp(&self, other: &ConfigConflict) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ConfigConflict
impl PartialEq for ConfigConflict
Source§impl PartialOrd for ConfigConflict
impl PartialOrd for ConfigConflict
Source§impl Serialize for ConfigConflict
impl Serialize for ConfigConflict
impl StructuralPartialEq for ConfigConflict
Auto Trait Implementations§
impl Freeze for ConfigConflict
impl RefUnwindSafe for ConfigConflict
impl Send for ConfigConflict
impl Sync for ConfigConflict
impl Unpin for ConfigConflict
impl UnsafeUnpin for ConfigConflict
impl UnwindSafe for ConfigConflict
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