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. It is expected that the relevant GIT_ environment variables are used on the command to set the author and committer information.

Trait Implementations

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

Formats the value using the given formatter.