Enum git_workarea::MergeStatus [] [src]

pub enum MergeStatus {
    NoCommonHistory,
    AlreadyMerged,
    Mergeable(Vec<CommitId>),
}

Status of a merge check.

Variants

The branches do not contain common history.

The branch has already been merged.

The branch is mergeable with the given hashes as merge bases.

Trait Implementations

impl Debug for MergeStatus
[src]

Formats the value using the given formatter.

impl Display for MergeStatus
[src]

Formats the value using the given formatter. Read more