Enum git_topic_stage::InvalidCommitReason [] [src]

pub enum InvalidCommitReason {
    NonMergeCommit,
    OctopusMerge,
    NotRelated,
    NotACommit,
    InvalidSubject(String),
    MissingId,
    MissingUrl,
    ZeroId,
}

Why a commit is not a valid staging branch commit.

The staging branch format is such that its first-parent history consists solely of two-parent merge commits. It must also have the base commit as an ancestor.

Variants

A non-merge commit was found.

An octopus merge commit was found.

The integration branch is not related to the base.

The integration branch does not point to a commit.

A merge commit has an invalid commit subject.

A merge commit is missing an ID.

A merge commit is missing a URL.

A topic has in ID of 0, which is reserved for the base branch.

Trait Implementations

impl Debug for InvalidCommitReason
[src]

Formats the value using the given formatter.

impl PartialEq for InvalidCommitReason
[src]

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

This method tests for !=.

impl Eq for InvalidCommitReason
[src]