Enum git2::RebaseOperationType[][src]

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

Convert from the int into an enum. Returns None if invalid.

Trait Implementations

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.