Enum git_workarea::MergeResult
[−]
[src]
pub enum MergeResult<'a> { Conflict(Vec<Conflict>), Ready(Command), // some variants omitted }
The result of a merge.
Variants
Conflict(Vec<Conflict>)
Information about conflicts within the tree.
Ready(Command)
The merge is ready to be committed.