4 个版本
0.1.3 | 2023 年 10 月 27 日 |
---|---|
0.1.2 | 2023 年 10 月 27 日 |
0.1.1 | 2023 年 10 月 27 日 |
0.1.0 | 2023 年 10 月 27 日 |
#2 在 #mib
6KB
86 行
sizes
一个用于格式化字节数的crate。
示例
use sizes::{BinarySize};
println!("{}", BinarySize::from(2_u64*1024*1024).rounded());
// Result: 2.00 MiB
use sizes:{BinarySize, YIB};
println!("{}", BinarySize::from(2_u128*YIB));
// Result: 2 YiB