1 个不稳定版本
0.1.0 | 2019年7月4日 |
---|
#190 in #定时器
3KB
简单定时器
用法
在 Cargo.toml 中
[dependencies]
simple-timer = { git = 'https://github.com/hwchen/simple-timer-rs' }
在代码中
use simple_timer::timeit;
fn hello_world() {
println!("hello world");
}
fn main() -> {
timeit!("time_1", hello_world());
timeit!("time_two",
{
println!("great weather");
println!("i agree");
}
);
let forty_two = timeit!("three", 42);
assert_eq!(forty_two, 42);
}
许可证
MIT