pub struct VariableConflict {
pub name: String,
pub base_domain: String,
pub incoming_domain: String,
pub resolution: MergeConflictResolution,
}Expand description
Information about a variable conflict.
Fields§
§name: StringName of the conflicting variable
base_domain: StringDomain from base table
incoming_domain: StringDomain from incoming table
resolution: MergeConflictResolutionHow the conflict was resolved
Trait Implementations§
Source§impl Clone for VariableConflict
impl Clone for VariableConflict
Source§fn clone(&self) -> VariableConflict
fn clone(&self) -> VariableConflict
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 VariableConflict
impl RefUnwindSafe for VariableConflict
impl Send for VariableConflict
impl Sync for VariableConflict
impl Unpin for VariableConflict
impl UnwindSafe for VariableConflict
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