• Home
  • Raw
  • Download

Lines Matching defs:BenchmarkId

65 pub struct BenchmarkId {  struct
66 pub group_id: String,
67 pub function_id: Option<String>,
68 pub value_str: Option<String>,
69 pub throughput: Option<Throughput>,
70 full_id: String,
71 directory_name: String,
72 title: String,
111 impl BenchmarkId { implementation
117 ) -> BenchmarkId { in new()
231 impl fmt::Display for BenchmarkId { implementation
236 impl fmt::Debug for BenchmarkId { implementation
261 pub fn report_path<P: AsRef<Path> + ?Sized>(&self, id: &BenchmarkId, file_name: &P) -> PathBuf { in report_path()
271 fn test_start(&self, _id: &BenchmarkId, _context: &ReportContext) {} in test_start()
272 fn test_pass(&self, _id: &BenchmarkId, _context: &ReportContext) {} in test_pass()
274 fn benchmark_start(&self, _id: &BenchmarkId, _context: &ReportContext) {} in benchmark_start()
275 fn profile(&self, _id: &BenchmarkId, _context: &ReportContext, _profile_ns: f64) {} in profile()
276 fn warmup(&self, _id: &BenchmarkId, _context: &ReportContext, _warmup_ns: f64) {} in warmup()
277 fn terminated(&self, _id: &BenchmarkId, _context: &ReportContext) {} in terminated()
278 fn analysis(&self, _id: &BenchmarkId, _context: &ReportContext) {} in analysis()
281 _id: &BenchmarkId, in measurement_start()
290 _id: &BenchmarkId, in measurement_complete()
299 _all_ids: &[BenchmarkId], in summarize()
483 fn test_start(&self, id: &BenchmarkId, _: &ReportContext) { in test_start()
486 fn test_pass(&self, _: &BenchmarkId, _: &ReportContext) { in test_pass()
490 fn benchmark_start(&self, id: &BenchmarkId, _: &ReportContext) { in benchmark_start()
494 fn profile(&self, id: &BenchmarkId, _: &ReportContext, warmup_ns: f64) { in profile()
503 fn warmup(&self, id: &BenchmarkId, _: &ReportContext, warmup_ns: f64) { in warmup()
512 fn terminated(&self, id: &BenchmarkId, _: &ReportContext) { in terminated()
517 fn analysis(&self, id: &BenchmarkId, _: &ReportContext) { in analysis()
524 id: &BenchmarkId, in measurement_start()
548 id: &BenchmarkId, in measurement_complete()
738 id: &BenchmarkId, in measurement_start()
749 _id: &BenchmarkId, in measurement_complete()