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;
4
4
use bstr:: { BStr , ByteSlice } ;
5
5
6
6
/// 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 ) ]
8
8
pub enum ChangeRef < ' a > {
9
9
/// An entry was added, like the addition of a file or directory.
10
10
Addition {
@@ -101,7 +101,7 @@ pub enum ChangeRef<'a> {
101
101
}
102
102
103
103
/// 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 ) ]
105
105
pub enum Change {
106
106
/// An entry was added, like the addition of a file or directory.
107
107
Addition {
You can’t perform that action at this time.
0 commit comments