pub struct Conflict {
pub subject: String,
pub predicate: String,
pub namespace: String,
pub object_a: String,
pub object_b: String,
}Expand description
A merge conflict: same (subject, predicate, namespace) with different objects.
Fields§
§subject: String§predicate: String§namespace: String§object_a: StringThe object value from branch A.
object_b: StringThe object value from branch B.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Conflict
impl RefUnwindSafe for Conflict
impl Send for Conflict
impl Sync for Conflict
impl Unpin for Conflict
impl UnsafeUnpin for Conflict
impl UnwindSafe for Conflict
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