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

source

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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for RebaseOperationType

source§

fn eq(&self, other: &RebaseOperationType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for RebaseOperationType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.