Enum git_refspec::match_group::validate::Issue
source · 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
Fields
destination_full_ref_name: BString
The unenforced full name of the reference to be written.
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.
Trait Implementations
impl Eq for Issue
impl StructuralEq for Issue
impl StructuralPartialEq for Issue
Auto Trait Implementations
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnwindSafe for Issue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more