Enum git2::RepositoryState
source · pub enum RepositoryState {
Clean,
Merge,
Revert,
RevertSequence,
CherryPick,
CherryPickSequence,
Bisect,
Rebase,
RebaseInteractive,
RebaseMerge,
ApplyMailbox,
ApplyMailboxOrRebase,
}
Expand description
A listing of the possible states that a repository can be in.
Variants§
Clean
Merge
Revert
RevertSequence
CherryPick
CherryPickSequence
Bisect
Rebase
RebaseInteractive
RebaseMerge
ApplyMailbox
ApplyMailboxOrRebase
Trait Implementations§
source§impl Clone for RepositoryState
impl Clone for RepositoryState
source§fn clone(&self) -> RepositoryState
fn clone(&self) -> RepositoryState
Returns a copy of the value. Read more
1.0.0 · 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 RepositoryState
impl Debug for RepositoryState
source§impl PartialEq<RepositoryState> for RepositoryState
impl PartialEq<RepositoryState> for RepositoryState
source§fn eq(&self, other: &RepositoryState) -> bool
fn eq(&self, other: &RepositoryState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.