pub enum Stage {
Unconflicted = 0,
Base = 1,
Ours = 2,
Theirs = 3,
}
Expand description
The stage of an entry.
Variants§
Unconflicted = 0
This is the default, and most entries are in this stage.
Base = 1
The entry is the common base between ‘our’ change and ‘their’ change, for comparison.
Ours = 2
The entry represents our change.
Theirs = 3
The entry represents their change.
Trait Implementations§
source§impl Ord for Stage
impl Ord for Stage
source§impl PartialOrd for Stage
impl PartialOrd for Stage
impl Copy for Stage
impl Eq for Stage
impl StructuralPartialEq for Stage
Auto Trait Implementations§
impl Freeze for Stage
impl RefUnwindSafe for Stage
impl Send for Stage
impl Sync for Stage
impl Unpin for Stage
impl UnwindSafe for Stage
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)