@@ -14,10 +14,8 @@ use objdiff_core::{
1414 } ,
1515 } ,
1616 jobs:: {
17- Job , JobQueue , JobResult ,
18- create_scratch:: CreateScratchResult ,
19- find_similar:: SimilarFunctionMatch ,
20- objdiff:: ObjDiffResult ,
17+ Job , JobQueue , JobResult , create_scratch:: CreateScratchResult ,
18+ find_similar:: SimilarFunctionMatch , objdiff:: ObjDiffResult ,
2119 } ,
2220 obj:: { Object , Section , SectionKind , Symbol , SymbolFlag } ,
2321} ;
@@ -91,7 +89,10 @@ pub enum DiffViewAction {
9189 ScrollToRow ( usize ) ,
9290 /// Find and display code symbols similar to the given symbol.
9391 /// `column` is 0 for left object, 1 for right object.
94- FindSimilarFunctions { symbol_idx : usize , column : usize } ,
92+ FindSimilarFunctions {
93+ symbol_idx : usize ,
94+ column : usize ,
95+ } ,
9596 /// Close the similar functions panel.
9697 CloseSimilarFunctions ,
9798 /// Set the similar functions search filter.
@@ -101,7 +102,10 @@ pub enum DiffViewAction {
101102 /// Show/hide base-side results in the similar functions panel.
102103 SetSimilarShowBase ( bool ) ,
103104 /// Set the minimum/maximum match-percent filter for the similar functions panel.
104- SetSimilarPercentRange { min : f32 , max : f32 } ,
105+ SetSimilarPercentRange {
106+ min : f32 ,
107+ max : f32 ,
108+ } ,
105109}
106110
107111#[ derive( Debug , Clone , Default , Eq , PartialEq ) ]
0 commit comments