Enum git_repository::state::InProgress
source · pub enum InProgress {
ApplyMailbox,
ApplyMailboxRebase,
Bisect,
CherryPick,
CherryPickSequence,
Merge,
Rebase,
RebaseInteractive,
Revert,
RevertSequence,
}
Expand description
Tell what operation is currently in progress.
Variants§
ApplyMailbox
A mailbox is being applied.
ApplyMailboxRebase
A rebase is happening while a mailbox is being applied.
Bisect
A git bisect operation has not yet been concluded.
CherryPick
A cherry pick operation.
CherryPickSequence
A cherry pick with multiple commits pending.
Merge
A merge operation.
Rebase
A rebase operation.
RebaseInteractive
An interactive rebase operation.
Revert
A revert operation.
RevertSequence
A revert operation with multiple commits pending.
Trait Implementations§
source§impl Debug for InProgress
impl Debug for InProgress
source§impl PartialEq<InProgress> for InProgress
impl PartialEq<InProgress> for InProgress
source§fn eq(&self, other: &InProgress) -> bool
fn eq(&self, other: &InProgress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InProgress
impl StructuralEq for InProgress
impl StructuralPartialEq for InProgress
Auto Trait Implementations§
impl RefUnwindSafe for InProgress
impl Send for InProgress
impl Sync for InProgress
impl Unpin for InProgress
impl UnwindSafe for InProgress
Blanket Implementations§
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more