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
sourceimpl 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
sourceimpl Debug for RebaseOperationType
impl Debug for RebaseOperationType
impl StructuralPartialEq for RebaseOperationType
Auto Trait Implementations
impl RefUnwindSafe for RebaseOperationType
impl Send for RebaseOperationType
impl Sync for RebaseOperationType
impl Unpin for RebaseOperationType
impl UnwindSafe for RebaseOperationType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more