• Home
  • Raw
  • Download

Lines Matching defs:BenchmarkId

62 pub struct BenchmarkId {  struct
63 pub group_id: String,
64 pub function_id: Option<String>,
65 pub value_str: Option<String>,
66 pub throughput: Option<Throughput>,
67 full_id: String,
68 directory_name: String,
69 title: String,
108 impl BenchmarkId { impl
114 ) -> BenchmarkId { in new()
225 impl fmt::Display for BenchmarkId { implementation
230 impl fmt::Debug for BenchmarkId { implementation
255 pub fn report_path<P: AsRef<Path> + ?Sized>(&self, id: &BenchmarkId, file_name: &P) -> PathBuf { in report_path()
265 fn test_start(&self, _id: &BenchmarkId, _context: &ReportContext) {} in test_start()
266 fn test_pass(&self, _id: &BenchmarkId, _context: &ReportContext) {} in test_pass()
268 fn benchmark_start(&self, _id: &BenchmarkId, _context: &ReportContext) {} in benchmark_start()
269 fn profile(&self, _id: &BenchmarkId, _context: &ReportContext, _profile_ns: f64) {} in profile()
270 fn warmup(&self, _id: &BenchmarkId, _context: &ReportContext, _warmup_ns: f64) {} in warmup()
271 fn terminated(&self, _id: &BenchmarkId, _context: &ReportContext) {} in terminated()
272 fn analysis(&self, _id: &BenchmarkId, _context: &ReportContext) {} in analysis()
275 _id: &BenchmarkId, in measurement_start()
284 _id: &BenchmarkId, in measurement_complete()
293 _all_ids: &[BenchmarkId], in summarize()
484 fn test_start(&self, id: &BenchmarkId, _: &ReportContext) { in test_start()
487 fn test_pass(&self, _: &BenchmarkId, _: &ReportContext) { in test_pass()
491 fn benchmark_start(&self, id: &BenchmarkId, _: &ReportContext) { in benchmark_start()
495 fn profile(&self, id: &BenchmarkId, _: &ReportContext, warmup_ns: f64) { in profile()
504 fn warmup(&self, id: &BenchmarkId, _: &ReportContext, warmup_ns: f64) { in warmup()
513 fn terminated(&self, id: &BenchmarkId, _: &ReportContext) { in terminated()
518 fn analysis(&self, id: &BenchmarkId, _: &ReportContext) { in analysis()
525 id: &BenchmarkId, in measurement_start()
549 id: &BenchmarkId, in measurement_complete()
734 id: &BenchmarkId, in measurement_start()
745 _id: &BenchmarkId, in measurement_complete()