6 个版本
0.2.0 | 2024 年 3 月 16 日 |
---|---|
0.1.4 | 2022 年 6 月 13 日 |
0.1.3 | 2022 年 5 月 31 日 |
0.1.0 | 2022 年 1 月 10 日 |
在 开发工具 中排名 #2502
每月下载量 357
用于 5 个crate(通过 wtools)
9KB
87 行
模块 :: time_tools
通用时间工具集合。
基本用例
#[ cfg( feature = "chrono" ) ]
{
use time_tools::*;
/* get milliseconds from UNIX epoch */
let now = time::now();
println!( "now {}", now );
/* get nanoseconds from UNIX epoch */
let now = time::now();
let now_ns = time::ns::now();
assert_eq!( now, now_ns / 1000000 );
/* get seconds from UNIX epoch */
let now = time::now();
let now_s = time::s::now();
assert_eq!( now / 1000, now_s );
}
添加到您的项目中
cargo add time_tools
从仓库中尝试
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/time_tools_trivial
cargo run