Enum git2::RebaseOperationType
source · pub enum RebaseOperationType {
Pick,
Reword,
Edit,
Squash,
Fixup,
Exec,
}
Expand description
A rebase operation
Describes a single instruction/operation to be performed during the rebase.
Variants§
Pick
The given commit is to be cherry-picked. The client should commit the changes and continue if there are no conflicts.
Reword
The given commit is to be cherry-picked, but the client should prompt the user to provide an updated commit message.
Edit
The given commit is to be cherry-picked, but the client should stop to allow the user to edit the changes before committing them.
Squash
The given commit is to be squashed into the previous commit. The commit message will be merged with the previous message.
Fixup
The given commit is to be squashed into the previous commit. The commit message from this commit will be discarded.
Exec
No commit will be cherry-picked. The client should run the given command and (if successful) continue.
Implementations§
source§impl RebaseOperationType
impl RebaseOperationType
sourcepub fn from_raw(raw: git_rebase_operation_t) -> Option<RebaseOperationType>
pub fn from_raw(raw: git_rebase_operation_t) -> Option<RebaseOperationType>
Convert from the int into an enum. Returns None if invalid.
Trait Implementations§
source§impl Debug for RebaseOperationType
impl Debug for RebaseOperationType
source§impl PartialEq for RebaseOperationType
impl PartialEq for RebaseOperationType
source§fn eq(&self, other: &RebaseOperationType) -> bool
fn eq(&self, other: &RebaseOperationType) -> bool
self
and other
values to be equal, and is used
by ==
.