2个版本

0.1.2 2021年4月4日
0.1.1 2021年4月4日
0.1.0 2019年7月21日

#341 in 日期和时间

MIT许可证

13KB
251

高分辨率秒表

build

这个库是一个基于 std::time::SystemTime 的简单秒表实现。这个库也可以在 crates.io 上找到。

要使用这个库,你只需要将其添加到你的 Cargo.toml 文件中作为依赖项

[dependencies]
hrsw = "0.1.2"

示例用法

use hrsw::Stopwatch;
let mut stopwatch = Stopwatch::new();
stopwatch.start();
// do something and get the elapsed time
let elapsed = stopwatch.elapsed();
// do something other and get the total elapsed time
stopwatch.stop();
let total_elapsed = stopwatch.elapsed();

贡献 欢迎贡献

所有类型的贡献都非常欢迎,所以请随时创建一个问题、发起一个pull request或向我询问有关库的任何问题!

无运行时依赖