2个版本

使用旧的Rust 2015

0.1.1 2018年7月28日
0.1.0 2018年7月28日

#449 in 日期和时间

Download history • Rust 包仓库 1527/week @ 2024-03-28 • Rust 包仓库 1300/week @ 2024-04-04 • Rust 包仓库 1520/week @ 2024-04-11 • Rust 包仓库 2077/week @ 2024-04-18 • Rust 包仓库 1239/week @ 2024-04-25 • Rust 包仓库 1920/week @ 2024-05-02 • Rust 包仓库 1430/week @ 2024-05-09 • Rust 包仓库 1335/week @ 2024-05-16 • Rust 包仓库 601/week @ 2024-05-23 • Rust 包仓库 650/week @ 2024-05-30 • Rust 包仓库 717/week @ 2024-06-06 • Rust 包仓库 811/week @ 2024-06-13 • Rust 包仓库 699/week @ 2024-06-20 • Rust 包仓库 699/week @ 2024-06-27 • Rust 包仓库 684/week @ 2024-07-04 • Rust 包仓库 552/week @ 2024-07-11 • Rust 包仓库

2,717 每月下载量

MIT/Apache

7KB

持续时间

此crate定义了几个在实践(或很少)中常用的Duration常量。

使用示例

extern crate durations;
 
use durations::{SECOND as S, MILLISECOND as MS};
 
std::thread::sleep(2*S + 200*MS);
// or alternatively
std::thread::sleep(2.2*S);

许可证

所有crate均受以下其中之一许可

任选其一。

贡献

除非您明确表示,否则根据Apache-2.0许可证定义的,您有意提交的任何贡献,包括在作品中,应按上述方式双许可,不附加任何额外条款或条件。


lib.rs:

此crate定义了几个在实践(或很少)中常用的Duration常量。

使用示例

extern crate durations;

use durations::{SECOND as S, MILLISECOND as MS};

std::thread::sleep(2*S + 200*MS);
// or alternatively
std::thread::sleep(2.2*S);

无运行时依赖