1 个稳定版本

使用旧的 Rust 2015

1.1.0 2018 年 9 月 25 日

#322性能分析

Download history 6/week @ 2023-12-14 3/week @ 2023-12-21 3/week @ 2023-12-28 90/week @ 2024-01-04 211/week @ 2024-01-11 227/week @ 2024-01-18 169/week @ 2024-01-25 197/week @ 2024-02-01 36/week @ 2024-02-08 181/week @ 2024-02-15 51/week @ 2024-02-22 30/week @ 2024-02-29 30/week @ 2024-03-07 22/week @ 2024-03-14 32/week @ 2024-03-21 58/week @ 2024-03-28

145 每月下载量

MIT 许可证

7KB
81 代码行

callgrind

callgrind 是一个旨在补充 valgrind_request Crates 的 Rust Crates。它旨在测试期间收集仪表和统计数据,以便检查性能瓶颈。

要使用它:-

extern crate callgrind;

use ::callgrind::CallgrindClientRequest;


#[test]
fn some_test()
{
	CallgrindClientRequest::start();
	
	// Execute some code to gather statistics on.
	...
	
	CallgrindClientRequest::stop(None);
}

许可证

本项目的许可证为 MIT。


lib.rs:

#callgrind

这是一个 Rust 库。

依赖项

~48KB