File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ impl App {
162162
163163 impl < SizeGetter > CreateReporter < false > for SizeGetter
164164 where
165- SizeGetter : GetSizeUtils ,
165+ Self : GetSizeUtils ,
166166 {
167167 type Reporter = ErrorOnlyReporter < fn ( ErrorReport ) > ;
168168 fn create_reporter ( report_error : fn ( ErrorReport ) ) -> Self :: Reporter {
@@ -172,12 +172,12 @@ impl App {
172172
173173 impl < SizeGetter > CreateReporter < true > for SizeGetter
174174 where
175- SizeGetter : GetSizeUtils ,
176- SizeGetter :: Size : Into < u64 > + Send + Sync ,
177- ProgressReport < SizeGetter :: Size > : Default + ' static ,
178- u64 : Into < SizeGetter :: Size > ,
175+ Self : GetSizeUtils ,
176+ Self :: Size : Into < u64 > + Send + Sync ,
177+ ProgressReport < Self :: Size > : Default + ' static ,
178+ u64 : Into < Self :: Size > ,
179179 {
180- type Reporter = ProgressAndErrorReporter < SizeGetter :: Size , fn ( ErrorReport ) > ;
180+ type Reporter = ProgressAndErrorReporter < Self :: Size , fn ( ErrorReport ) > ;
181181 fn create_reporter ( report_error : fn ( ErrorReport ) ) -> Self :: Reporter {
182182 ProgressAndErrorReporter :: new (
183183 ProgressReport :: TEXT ,
You can’t perform that action at this time.
0 commit comments