Enum git_workarea::MergeResult [] [src]

pub enum MergeResult<'a> {
    Conflict(Vec<Conflict>),
    Ready(MergeCommand),
    // some variants omitted
}

The result of an attempted merge.

Variants

A merge conflict occurred.

The merge is ready to be committed.

The command may be executed in order to create the commit from the merged tree.

Trait Implementations

impl<'a> Debug for MergeResult<'a>
[src]

[src]

Formats the value using the given formatter.