pub struct MergeWarning {
pub shared_dep: String,
pub ours_callers: Vec<String>,
pub theirs_callers: Vec<String>,
}Expand description
A warning about potential interaction between changes.
Fields§
The shared dependency that both sides’ changes touch callers of.
ours_callers: Vec<String>Node IDs changed on the “ours” side that call the shared dep.
theirs_callers: Vec<String>Node IDs changed on the “theirs” side that call the shared dep.
Trait Implementations§
Source§impl Clone for MergeWarning
impl Clone for MergeWarning
Source§fn clone(&self) -> MergeWarning
fn clone(&self) -> MergeWarning
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 moreAuto Trait Implementations§
impl Freeze for MergeWarning
impl RefUnwindSafe for MergeWarning
impl Send for MergeWarning
impl Sync for MergeWarning
impl Unpin for MergeWarning
impl UnsafeUnpin for MergeWarning
impl UnwindSafe for MergeWarning
Blanket Implementations§
impl<T> Allocation for T
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