2 releases
0.1.2 | Jul 3, 2024 |
---|---|
0.1.1 | Apr 3, 2021 |
#1109 in Parser implementations
130 downloads per month
Used in pods-blitz
7KB
84 lines
fmtsize
Format memory sizes.
Usage
Import the trait and call the method.
use fmtsize::{Conventional, FmtSize};
println!("{}", 492_752_310_u64.fmt_size(Conventional)); // 469.93 MB
License
MIT or Apache 2.0. Pick whichever you like.
lib.rs
:
fmtsize
fmtsize
provides human-readable formatting for things like file sizes. It
attempts to find the largest shorthand size possible for a given value,
although it's limited to "gigabytes." Someday we may upgrade to terabytes. :)
println!("{}", 492_752_310_u64.fmt_size(Conventional)); // 469.93 MB