@@ -155,6 +155,7 @@ impl App {
155155 impl GetSizeUtils for GetApparentSize {
156156 const INSTANCE : Self = GetApparentSize ;
157157 const QUANTITY : Quantity = Quantity :: ApparentSize ;
158+ #[ inline]
158159 fn formatter ( bytes_format : BytesFormat ) -> BytesFormat {
159160 bytes_format
160161 }
@@ -164,6 +165,7 @@ impl App {
164165 impl GetSizeUtils for GetBlockSize {
165166 const INSTANCE : Self = GetBlockSize ;
166167 const QUANTITY : Quantity = Quantity :: BlockSize ;
168+ #[ inline]
167169 fn formatter ( bytes_format : BytesFormat ) -> BytesFormat {
168170 bytes_format
169171 }
@@ -173,6 +175,7 @@ impl App {
173175 impl GetSizeUtils for GetBlockCount {
174176 const INSTANCE : Self = GetBlockCount ;
175177 const QUANTITY : Quantity = Quantity :: BlockCount ;
178+ #[ inline]
176179 fn formatter ( _: BytesFormat ) { }
177180 }
178181
@@ -186,6 +189,7 @@ impl App {
186189 Self : GetSizeUtils ,
187190 {
188191 type Reporter = ErrorOnlyReporter < fn ( ErrorReport ) > ;
192+ #[ inline]
189193 fn create_reporter ( report_error : fn ( ErrorReport ) ) -> Self :: Reporter {
190194 ErrorOnlyReporter :: new ( report_error)
191195 }
@@ -199,6 +203,7 @@ impl App {
199203 u64 : Into < Self :: Size > ,
200204 {
201205 type Reporter = ProgressAndErrorReporter < Self :: Size , fn ( ErrorReport ) > ;
206+ #[ inline]
202207 fn create_reporter ( report_error : fn ( ErrorReport ) ) -> Self :: Reporter {
203208 ProgressAndErrorReporter :: new (
204209 ProgressReport :: TEXT ,
@@ -223,6 +228,7 @@ impl App {
223228 Self :: Size : Send + Sync ,
224229 {
225230 type HardlinksHandler = hardlink:: HardlinkIgnorant ;
231+ #[ inline]
226232 fn create_hardlinks_handler ( ) -> Self :: HardlinksHandler {
227233 hardlink:: HardlinkIgnorant
228234 }
@@ -237,6 +243,7 @@ impl App {
237243 Self :: Reporter : crate :: reporter:: Reporter < Self :: Size > ,
238244 {
239245 type HardlinksHandler = hardlink:: HardlinkAware < Self :: Size > ;
246+ #[ inline]
240247 fn create_hardlinks_handler ( ) -> Self :: HardlinksHandler {
241248 hardlink:: HardlinkAware :: new ( )
242249 }
0 commit comments