pub enum Issue {
Conflict {
destination_full_ref_name: BString,
sources: Vec<Source>,
specs: Vec<BString>,
},
}
Expand description
All possible issues found while validating matched mappings.
Variants§
Conflict
Multiple sources try to write the same destination.
Note that this issue doesn’t take into consideration that these sources might contain the same object behind a reference.
Fields
Trait Implementations§
impl Eq for Issue
impl StructuralPartialEq for Issue
Auto Trait Implementations§
impl Freeze for Issue
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnwindSafe for Issue
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