pub struct DependencyConflict {
pub conflict_type: ConflictType,
pub field: String,
pub rules: Vec<String>,
pub salience: i32,
pub description: String,
}Expand description
A conflict between rules
Fields§
§conflict_type: ConflictTypeType of conflict
field: StringField that causes the conflict
rules: Vec<String>Rules involved in the conflict
salience: i32Salience level where conflict occurs
description: StringHuman-readable description
Trait Implementations§
Source§impl Clone for DependencyConflict
impl Clone for DependencyConflict
Source§fn clone(&self) -> DependencyConflict
fn clone(&self) -> DependencyConflict
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 DependencyConflict
impl RefUnwindSafe for DependencyConflict
impl Send for DependencyConflict
impl Sync for DependencyConflict
impl Unpin for DependencyConflict
impl UnwindSafe for DependencyConflict
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