pub enum MergeDriverSetupStep {
GitattributesAlreadyExists,
GitattributesAppended,
GitattributesCreated,
GitConfigured,
}Expand description
A step completed during merge driver setup.
Variants§
GitattributesAlreadyExists
.gitattributes already contained the merge driver entry.
GitattributesAppended
Appended the merge driver entry to an existing .gitattributes.
GitattributesCreated
Created a new .gitattributes file with the merge driver entry.
GitConfigured
Configured git config merge.murk.*.
Trait Implementations§
Source§impl Debug for MergeDriverSetupStep
impl Debug for MergeDriverSetupStep
impl Eq for MergeDriverSetupStep
Source§impl PartialEq for MergeDriverSetupStep
impl PartialEq for MergeDriverSetupStep
Source§fn eq(&self, other: &MergeDriverSetupStep) -> bool
fn eq(&self, other: &MergeDriverSetupStep) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergeDriverSetupStep
Auto Trait Implementations§
impl Freeze for MergeDriverSetupStep
impl RefUnwindSafe for MergeDriverSetupStep
impl Send for MergeDriverSetupStep
impl Sync for MergeDriverSetupStep
impl Unpin for MergeDriverSetupStep
impl UnsafeUnpin for MergeDriverSetupStep
impl UnwindSafe for MergeDriverSetupStep
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more