1 个稳定版本
1.0.0 | 2019年10月5日 |
---|
#364 在 值格式化
596 每月下载量
8KB
108 行
big-bytes
将数字转换为最大的字节单位倍数
示例
use big_bytes::BigByte;
let bytes = 2.456 * 1024_f32.powi(3);
assert_eq!("2.46 GiB", bytes.big_byte(2));
lib.rs
:
帮助使用最大的字节单位倍数来表示字节。
示例
use big_bytes::BigByte;
let bytes = 2.456 * 1024_f32.powi(3);
assert_eq!("2.46 GiB", bytes.big_byte(2));