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