#time #通用 #基础 #集合

no-std time_tools

通用时间工具集合

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

Download history 163/week @ 2024-03-14 54/week @ 2024-03-21 66/week @ 2024-03-28 47/week @ 2024-04-04 32/week @ 2024-04-11 36/week @ 2024-04-18 44/week @ 2024-04-25 42/week @ 2024-05-02 57/week @ 2024-05-09 45/week @ 2024-05-16 67/week @ 2024-05-23 187/week @ 2024-05-30 120/week @ 2024-06-06 73/week @ 2024-06-13 91/week @ 2024-06-20 15/week @ 2024-06-27

每月下载量 357
用于 5 个crate(通过 wtools

MIT 许可证

9KB
87

模块 :: time_tools

experimental rust-status docs.rs Open in Gitpod discord

通用时间工具集合。

基本用例

#[ 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

示例

discord Open in Gitpod docs.rs

无运行时依赖