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
sourceimpl Debug for InProgress
impl Debug for InProgress
sourceimpl PartialEq<InProgress> for InProgress
impl PartialEq<InProgress> 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more