pub struct NotesMergeConflict {
pub annotated: ObjectId,
pub base: Option<ObjectId>,
pub local: Option<ObjectId>,
pub remote: Option<ObjectId>,
}Expand description
One unresolved note-level conflict from a notes merge.
Fields§
§annotated: ObjectId§base: Option<ObjectId>§local: Option<ObjectId>§remote: Option<ObjectId>Trait Implementations§
Source§impl Clone for NotesMergeConflict
impl Clone for NotesMergeConflict
Source§fn clone(&self) -> NotesMergeConflict
fn clone(&self) -> NotesMergeConflict
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 moreSource§impl Debug for NotesMergeConflict
impl Debug for NotesMergeConflict
impl Eq for NotesMergeConflict
Source§impl PartialEq for NotesMergeConflict
impl PartialEq for NotesMergeConflict
Source§fn eq(&self, other: &NotesMergeConflict) -> bool
fn eq(&self, other: &NotesMergeConflict) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NotesMergeConflict
Auto Trait Implementations§
impl Freeze for NotesMergeConflict
impl RefUnwindSafe for NotesMergeConflict
impl Send for NotesMergeConflict
impl Sync for NotesMergeConflict
impl Unpin for NotesMergeConflict
impl UnsafeUnpin for NotesMergeConflict
impl UnwindSafe for NotesMergeConflict
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