2
2
use std:: {
3
3
cell:: RefCell ,
4
4
collections:: { BTreeMap , HashSet } ,
5
- env,
5
+ env, fmt ,
6
6
io:: { stderr, Write } ,
7
7
sync:: {
8
8
atomic:: { AtomicBool , Ordering } ,
@@ -278,9 +278,9 @@ fn print(
278
278
let detail = tree[ curr] . detail . as_ref ( ) . map ( |it| format ! ( " @ {}" , it) ) . unwrap_or_default ( ) ;
279
279
writeln ! (
280
280
out,
281
- "{}{:5}ms - {}{}" ,
281
+ "{}{} - {}{}" ,
282
282
current_indent,
283
- tree[ curr] . duration. as_millis ( ) ,
283
+ ms ( tree[ curr] . duration) ,
284
284
tree[ curr] . label,
285
285
detail,
286
286
)
@@ -302,14 +302,25 @@ fn print(
302
302
}
303
303
304
304
for ( child_msg, ( duration, count) ) in short_children. iter ( ) {
305
- let millis = duration. as_millis ( ) ;
306
- writeln ! ( out, " {}{:5}ms - {} ({} calls)" , current_indent, millis, child_msg, count)
305
+ writeln ! ( out, " {}{} - {} ({} calls)" , current_indent, ms( * duration) , child_msg, count)
307
306
. expect ( "printing profiling info" ) ;
308
307
}
309
308
310
309
let unaccounted = tree[ curr] . duration - accounted_for;
311
310
if tree. children ( curr) . next ( ) . is_some ( ) && unaccounted > longer_than {
312
- writeln ! ( out, " {}{:5}ms - ???" , current_indent, unaccounted . as_millis ( ) )
311
+ writeln ! ( out, " {}{} - ???" , current_indent, ms ( unaccounted ) )
313
312
. expect ( "printing profiling info" ) ;
314
313
}
315
314
}
315
+
316
+ #[ allow( non_camel_case_types) ]
317
+ struct ms ( Duration ) ;
318
+
319
+ impl fmt:: Display for ms {
320
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
321
+ match self . 0 . as_millis ( ) {
322
+ 0 => f. write_str ( " 0 " ) ,
323
+ n => write ! ( f, "{:5}ms" , n) ,
324
+ }
325
+ }
326
+ }
0 commit comments