File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
gix-diff/src/tree_with_rewrites Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use bstr::BString;
44use bstr:: { BStr , ByteSlice } ;
55
66/// Represents any possible change in order to turn one tree into another, which references data owned by its producer.
7- #[ derive( Debug , Clone , Copy ) ]
7+ #[ derive( Debug , Clone , Copy , PartialEq ) ]
88pub enum ChangeRef < ' a > {
99 /// An entry was added, like the addition of a file or directory.
1010 Addition {
@@ -101,7 +101,7 @@ pub enum ChangeRef<'a> {
101101}
102102
103103/// Represents any possible change in order to turn one tree into another, with fully-owned data.
104- #[ derive( Debug , Clone ) ]
104+ #[ derive( Debug , Clone , PartialEq ) ]
105105pub enum Change {
106106 /// An entry was added, like the addition of a file or directory.
107107 Addition {
You can’t perform that action at this time.
0 commit comments